在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
6,变量
7,常量a.常量使用const修饰,代表永远只是只读的,不能修改。 1: const b string = "hello world" 或者 1: const{2: b1 string = "hello world" 特殊写法: 1: const{2: a int = 1003: b4: c int = 2005: d6: }7: a,b=100 c,d=100 iota每多一行就自增加一: 1: const{2: a = iota3: b4: c5: }6: a=0 b=1 c=2 也可以这样写,效果和上面一样: 1: const{2: a = iota3: b = iota4: c = iota5: } 另外一种用法: 1: const{ 一个复杂点的例子: 1: const{2: a = iota3: b = iota4: c = iota5: d = 86: e7: f = iota8: g = iota9: } |
请发表评论