书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 414 个相关结果.
  • Language samples

    Language samples Language tour Library tour Hello World Variables Control flow statements Functions Comments Imports Classes Inheritance Mixins Interfaces and abstract ...
  • 1.8 补充说明

    1767 2019-02-27 《Go语言高级编程》
    1.8 补充说明 1.8 补充说明 本书定位是Go语言进阶图书,因此读者需要有一定的Go语言基础。如果对Go语言不太了解,作者推荐通过以下资料开始学习Go语言。首先是安装Go语言环境,然后通过go tool tour 命令打开“A Tour of Go”教程学习。在学习“A Tour of Go”教程的同时,可以阅读Go语言官方团队出版的《The G...
  • Working with SAI

    Working with Storage-attached indexing (SAI) Prerequisites Create SAI index Partition key SAI error map collection in SAI index similarity-function for vector search Alter SA...
  • for 语句

    775 2020-01-31 《Go 语言小册》
    for 语句 无限循环 下一步 for 语句 Go 只有一种循环结构—— for 循环。 最基本的 for 语句包含 3 部分,以分号 ; 分隔: 初始语句 :在第一次迭代判断之前; 条件语句(表达式) :在每次迭代前求值并判断; 迭代后语句 :在每次迭代后执行; for 初始语句; 条件语句; 迭代后语句 { ...
  • Dart 语言概览

    Dart 开发语言概述 Language tour Effective Dart Other resources Dart 开发语言概述 These two resources are popular with both beginning Dart developers and experts. Language tour A walk...
  • 变量

    828 2020-01-31 《Go 语言小册》
    变量 初始值 简式申明 下一步 变量 var 语句 申明 ( declare )变量列表;跟 函数 参数列表一样,类型在最后指定。 var 语句的作用域(可见范围)可以是 包级别 或者 函数级别 。下面这个例子同时包含这两种级别: /_src/tour/variables.go package main   ...
  • 函数值

    783 2020-01-31 《Go 语言小册》
    函数值 闭包 练习 1. 斐波那契数列 答案 下一步 函数值 在 Go 语言,函数也是一种值( C++ 函数对象、 Python 函数类似),可以被传递。 跟其他普通值一样,函数也可以作为 参数 传递或作为 返回值 返回。 /_src/tour/function-values.go package main   impo...
  • 结构体

    741 2020-01-31 《Go 语言小册》
    结构体 字段 结构体指针 字面量 下一步 结构体 Go 语言也有结构体——由若干 字段 ( field )组成的集合。 /_src/tour/structs.go package main   import "fmt"   type Vertex struct { X int Y in...
  • if 语句

    941 2020-01-31 《Go 语言小册》
    if 语句 初始语句 if-else 语句 下一步 if 语句 跟 for 语句 一样, if 语句条件表达式不需要括号包围,但是花括号却不能省略。 /_src/tour/if.go package main   import ( "fmt" "math" )     func sqrt ( x...
  • Get started

    Get started: command-line and server apps 1. Play with Dart code in DartPad 2. Install Dart 3. Get more command-line developer tools 4. Create a small app 5. Get the app’s depe...