larry*wei 2013-02-24 08:15 采纳率: 0%
浏览 212
已采纳

如何使用自定义包戈朗?

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条回答 默认 最新

  • 北城已荒凉 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条)

报告相同问题?

悬赏问题

  • ¥15 BP神经网络控制倒立摆
  • ¥20 要这个数学建模编程的代码 并且能完整允许出来结果 完整的过程和数据的结果
  • ¥15 html5+css和javascript有人可以帮吗?图片要怎么插入代码里面啊
  • ¥30 Unity接入微信SDK 无法开启摄像头
  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算