叼花硬汉 2013-02-24 08:15 采纳率: 0%
浏览 190
已采纳

如何使用自定义包戈朗?

I'm trying to create and use a custom package in Go. It's probably something very obvious but I cannot find much information about this. Basically, I have these two files in the same folder:

mylib.go

package mylib

type SomeType struct {

}

main.go

package main

import (
    "mylib"
)

func main() {

}

When I try to go run main.go, I get this error:

main.go:4:2: import "mylib": cannot find package

I've tried to run go build mylib.go first but it doesn't seem to be doing anything (no file generated, no error message). So any idea how I could do this?

转载于:https://stackoverflow.com/questions/15049903/how-to-use-custom-packages-in-golang

  • 写回答

6条回答 默认 最新

  • python小菜 2013-02-24 11:14
    关注

    First, be sure to read and understand the "How to write Go code" document.

    The actual answer depends on the nature of your "custom package".

    If it's intended to be of general use, consider employing the so-called "Github code layout". Basically, you make your library a separate go get-table project.

    If your library is for internal use, you could go like this:

    1. Place the directory with library files under the directory of your project.
    2. In the rest of your project, refer to the library using its path relative to the root of your workspace containing the project.

    To demonstrate:

    src/
      myproject/
        mylib/
          mylib.go
          ...
        main.go
    

    Now, in the top-level main.go, you could import "myproject/mylib" and it would work OK.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(5条)

报告相同问题?

悬赏问题

  • ¥20 数学建模,尽量用matlab回答,论文格式
  • ¥15 昨天挂载了一下u盘,然后拔了
  • ¥30 win from 窗口最大最小化,控件放大缩小,闪烁问题
  • ¥20 易康econgnition精度验证
  • ¥15 msix packaging tool打包问题
  • ¥28 微信小程序开发页面布局没问题,真机调试的时候页面布局就乱了
  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能