第 3 章 基本数据

《Go 程序设计语言》学习笔记目录

笔记来源:《Go 程序设计语言》ISBN:9787111558422 作者:Alan Donovan, Brianv Kernighan

3.6 常量

3.6.1 常量生成器 iota

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
type Weekday int

const (
    Sunday    Weekday = iota // 0
    Monday                   // 1
    Tuesday                  // 2
    Wednesday                // 3
    Thursday                 // 4
    Friday                   // 5
    Saturday                 // 6
)
1
2
3
4
5
6
7
8
const (
    _   = 1 << (10 * iota)
    KiB // 1024
    MiB // 1048576
    GiB // 1073741824
    TiB // 1099511627776
    PiB // 1125899906842624
)
comments powered by Disqus