书栈网 · BookStack 本次搜索耗时 0.035 秒,为您找到 98128 个相关结果.
  • Go常量

    Go常量 Go常量 Go支持定义字符常量,字符串常量,布尔型常量和数值常量。 使用const 关键字来定义常量。 package main import "fmt" import "math" // "const" 关键字用来定义常量 const s string = "constant" f...
  • Go变量

    Go变量 Go变量 Go是静态类型语言,变量是有明确类型的。编译器会检查函数调用中,变量类型的正确性。 使用var 关键字来定义变量。 Go 的基本类型有: bool string int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 uintptr byte // ui...
  • Go Exit

    Go Exit Go Exit 使用os.Exit 可以给定一个状态,然后立刻退出程序运行。 package main import "fmt" import "os" func main () { // 当使用`os.Exit`的时候defer操作不会被运行, // 所以这里的``fm...
  • 安装Go

    2032 2019-04-22 《Go语言快速入门》
    安装Go 安装Go CentOS7中通过yum安装 # CentOS7 可以只用使用yum安装 yum install golang CentOS7中通过源码安装 # 源码下载 # 官网源码 https://golang.org/dl/ 需要翻墙 wget https :// storage . googleapis . co...
  • go/printer

    package printer Overview Index Examples Package files version: 1.10 package printer import "go/printer" Overview Package printer implements printing of AST nodes. ...
  • go/parser

    package parser Overview Index Examples Package files version: 1.10 package parser import "go/parser" Overview Package parser implements a parser for Go source files....
  • go/importer

    package importer Overview Index Package files version: 1.10 package importer import "go/importer" Overview Package importer provides access to export data importers. ...
  • go/constant

    package constant Overview Index Package files version: 1.10 package constant import "go/constant" Overview Package constant implements Values representing untyped Go ...
  • Go RPC

    Go RPC HTTP RPC Server HTTP RPC client TCP RPC server TCP RPC client Matching values Go RPC Go’s RPC is so far unique to Go. It is different to the other RPC systems, so a...
  • 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...