程序笔记   发布时间:2022-05-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Go Import Path大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

提示:由于水平有限,如发现有疑问或错误的地方请毫不客气的提出、讨论,我会在第一时间回复,感谢在先

Content from command : go Help importpath

An import path (see 'go Help packages') denotes(表示) a package stored in the local file system. In general,an import path denotes(表示) either a standard package (such
as "unicode/utf8") or a package found in one of the work spaces (For more details see: 'go Help gopath').

relative import paths

An import path beginning with ./ or ../ is called a relative path.
The toolchain supports relative import paths as a shortcut(快捷方式) in two ways.

First,a relative path can be used as a shorthand(速记) on the command line.
If you are working in the directory containing the code imported as
"unicode" and want to run the tests for "unicode/utf8",you can type
"go test ./utf8" instead of needing to specify the full path.
Similarly,in the reverse situation,"go test .." will test "unicode" from
the "unicode/utf8" directory. relative patterns are also allowed,like
"go test ./..." to test all subdirectorIEs. See 'go Help packages' for details
on the pattern Syntax.

Second,if you are compiling a Go program not in a work space,
you can use a relative path in an import statement in that program
to refer to nearby code also not in a work space.
This makes it easy to experiment(实验) with small multipackage programs
outsIDe of the usual work spaces,but such programs cAnnot be
installed with "go install" (there is no work space in which to install them),
so they are rebuilt from scratch(from scratch 白手起家;从头做起) each time they are built.
To avoID ambiguity,Go programs cAnnot use relative import paths
within a work space.

1.一般情况下,不能在work spackes 中使用相对路径; demo:
--ch2  
    --cte.go  (package ch2  var Y = 4)
    --main
                  -- main.go 
                                 package main  
                                 import (
                                             "fmt"
                                            "../../ch2"  注意这里要锁定到 ch2这个包,../ch2是不行的
                                            )
                                            func main(){
                                                fmt.Printf(ch2.Y)    
                                            }
cd main and go run main.go (succed)

Remote import paths

Certain import paths also
describe how to obtain the source code for the package using
a revision(版本) control system.

A few common code hosTing sites have special Syntax:

Bitbucket (Git,Mercurial)
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "bitbucket.org/user/project"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "bitbucket.org/user/project/sub/directory"

GitHub (Git)

<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "github.com/user/project"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "github.com/user/project/sub/directory"

Launchpad (Bazaar)

<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "launchpad.net/project"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "launchpad.net/project/ser<a href="https://m.code.cc/tag/IE/" target="_blank" class="keywords">IE</a>s"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "launchpad.net/project/ser<a href="https://m.code.cc/tag/IE/" target="_blank" class="keywords">IE</a>s/sub/directory"

<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "launchpad.net/~user/project/branch"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "launchpad.net/~user/project/branch/sub/directory"

IBM DevOps services (Git)

<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "hub.jazz.net/git/user/project"
<a href="https://m.code.cc/tag/import/" target="_blank" class="keywords">import</a> "hub.jazz.net/git/user/project/sub/directory"

For code hosted on other servers,import paths may either be qualifIEd(受限于)
with the version control type,or the go tool can dynamically fetch
the import path over https/http and discover where the code resIDes
from a tag in the HTMl.

To declare the code LOCATIOn,an import path of the form

repository.vcs/path

specifIEs the given repository,with or without the .vcs suffix(前缀),
using the named version control system,and then the path insIDe
that repository. The supported version control systems are:

Bazaar      .bzr
Git         .git
Mercurial   .hg
Subversion  .svn

For example,

import "example.org/user/foo.hg"

denotes the root directory of the Mercurial repository at
example.org/user/foo or foo.hg,and

import "example.org/repo.git/foo/bar"

denotes the foo/bar directory of the Git repository at
example.org/repo or repo.git.

When a version control system supports multiple protocols,
each is trIEd in turn when downloading. For example,a Git
download trIEs then git+ssh://.

By default,downloads are reStricted to known secure protocols
(e.g. https,ssh). To override this setTing for Git downloads,the
GIT_ALLOW_PROTOCOL environment variable can be set (For more details see:
'go Help environment').

If the import path is not a known code hosTing site and also lacks a
version control qualifier(修饰),the go tool attempts to fetch the import
over https/http and looks for a tag in the document's HTML
. ---如果不是像git 或者是Mercurial这样的代码托管的情况---

The meta tag has the form:

The import-prefix is the import path corresponding to the repository
root. It must be a prefix or an exact match of the package being
fetched with "go get". If it's not an exact match,another http
request is made at the prefix to verify the tags match.

The meta tag should appear as early in the file as possible.
In particular,it should appear before any raw JavaScript or CSS,
to avoid confusing the go command's reStricted parser.

The vcs is one of "git","hg","svn",etc,

The repo-root is the root of the version control system
containing a scheR_540_11845@e and not containing a .vcs qualifier(修饰).

For example,

import "example.org/pkg/foo"

will result in the following requests:

https://example.org/pkg/foo?go-get=1 (preferred)
http://example.org/pkg/foo?go-get=1  (fallBACk,only with -insecurE)

If that page contains the meta tag

the go tool will verify that contains the
same Meta tag and then git clone into
GOPATH/src/example.org.

New downloaded packages are written to the first directory listed in the GOPATH
environment variable (For more details see: 'go Help gopath').

The go command attempts to download the version of the
package appropriate for the Go release being used.
Run 'go Help get' for more.

Import path checking

When the custom import path feature described above redirects to a
known code hosTing site,each of the resulTing packages has two possible
import paths,using the custom domain or the known hosTing site.

A package statement is said to have an "import comment" if it is immediately
followed (before the next newlinE) by a comment of one of these two forms:

package math // import "path"
package math /* import "path" */

The go command will refuse to install a package with an import comment
unless it is being referred to by that import path. In this way,import comments
let package authors make sure the custom import path is used and not a
direct path to the underlying code hosTing site.

Import path checking is disabled for code found within vendor trees.
This makes it possible to copy codE into alternate LOCATIOns in vendor trees
without needing to update import comments.

same meta tag and then git clone into
GOPATH/src/example.org.

New downloaded packages are written to the first directory Listed in the GOPATH
environment variable (For more details see: 'go Help gopath').

The go command attempts to download the version of the
package appropriate for the Go release being used.
Run 'go Help get' for more.


大佬总结

以上是大佬教程为你收集整理的Go Import Path全部内容,希望文章能够帮你解决Go Import Path所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: