- Go 教程
- Go - 首页
- Go - 概览
- Go - 环境设置
- Go - 程序结构
- Go - 基本语法
- Go - 数据类型
- Go - 变量
- Go - 常量
- Go - 运算符
- Go - 决策制定
- Go - 循环
- Go - 函数
- Go - 作用域规则
- Go - 字符串
- Go - 数组
- Go - 指针
- Go - 结构
- Go - 切片
- Go - 范围
- Go - 映射
- Go - 递归
- Go - 类型转换
- Go - 接口
- Go - 错误处理
- Go 实用资源
- Go - 问题和答案
- Go - 快速指南
- Go - 实用资源
- Go - 讨论
Go - 其他运算符
Go 语言支持其他几个重要运算符,包括 sizeof 和 ?:.
运算符 | 说明 | 示例 |
---|---|---|
& | 返回变量的地址。 | &a; 提供变量的实际地址。 |
* | 变量的指针。 | *a; 提供变量的指针。 |
示例
尝试以下示例,理解 Go 编程语言中可用的所有其他运算符 −
package main import "fmt" func main() { var a int = 4 var b int32 var c float32 var ptr *int /* example of type operator */ fmt.Printf("Line 1 - Type of variable a = %T\n", a ); fmt.Printf("Line 2 - Type of variable b = %T\n", b ); fmt.Printf("Line 3 - Type of variable c= %T\n", c ); /* example of & and * operators */ ptr = &a /* 'ptr' now contains the address of 'a'*/ fmt.Printf("value of a is %d\n", a); fmt.Printf("*ptr is %d.\n", *ptr); }
编译并执行上述程序后,它将产生以下结果 −
Line 1 - Type of variable a = int Line 2 - Type of variable b = int32 Line 3 - Type of variable c= float32 value of a is 4 *ptr is 4.
go_operators.htm
广告