书栈网 · BookStack 本次搜索耗时 0.026 秒,为您找到 55850 个相关结果.
  • Go 数组

    Go 数组 Go 数组 数组是一个具有相同数据类型 的元素组成的固定长度 的有序集合 。 在Go语言中,数组是值类型,长度是类型的组成部分,也就是说”[10]int “和“[20]int ”是完全不同的两种数组类型。 同类型的两个数组支持”==”和”!=”比较,但是不能比较大小。 数组作为参数时,函数内部不改变数组内部的值,除非是传入数组的指针。 ...
  • Go for循环

    Go for循环 Go for循环 for循环是Go语言唯一的循环结构。这里有三个基本的for循环类型。 package main import "fmt" func main () { // 最基本的一种,单一条件循环 // 这个可以代替其他语言的while循环 i := ...
  • Go 开发

    项目目录结构 命名规范 文件名命名规范 包名 接口名 变量名 常量名 函数名 Geter/Seter方法 import规范 代码规范 格式 注释 分号 控制结构 空白标识符 错误处理 项目目录结构 GOPATH是Go的工作目录,在windows上是C:\user\username\go 。模板示例: GOPATH ...
  • Go Bootstrapping

    Go Bootstrapping Go Bootstrapping Briefly describe the bootstrapping process of a go executable. Answer Run the platform - specific assembly that is located under $GOR...
  • go generate

    go generate go generate Briefly describe how go generate works. Answer go generate will search specified directories or files for comments like "//go:generate" , a...
  • go test

    1635 2018-09-02 《GO 命令教程》
    go test go test go test 命令用于对Go语言编写的程序进行测试。这种测试是以代码包为单位的。当然,这还需要测试源码文件的帮助。关于怎样编写并写好Go程序测试代码,我们会在本章的第二节加以详述。在这里,我们只讨论怎样使用命令启动测试。 go test 命令会自动测试每一个指定的代码包。当然,前提是指定的代码包中存在测试源码文件。...
  • go clean

    1741 2018-09-02 《GO 命令教程》
    go clean go clean 执行go clean 命令会删除掉执行其它命令时产生的一些文件和目录,包括: 在使用go build 命令时在当前代码包下生成的与包名同名或者与Go源码文件同名的可执行文件。在Windows下,则是与包名同名或者Go源码文件同名且带有“.exe”后缀的文件。 在执行go test 命令并加入-c 标记时在当...
  • Go client

    Pulsar Go client Get started What’s next? Reference doc Pulsar Go client You can use a Pulsar Go client to create Pulsar producers, consumers, and readers in Golang. Get s...
  • Go client

    Pulsar Go client Get started What’s next? Reference doc Pulsar Go client You can use a Pulsar Go client to create Pulsar producers, consumers, and readers in Golang. Get s...
  • Go SDK

    Go SDK Go SDK The GreptimeDB Go ingester library utilizes gRPC for writing data to the database. For how to use the library, please refer to the Go library documentation . To c...