位置:首页 > 高级语言 > Go语言在线教程 > Go语言其它运算符

Go语言其它运算符

还有其他一些重要的运算符,包括sizeof和?:在Go语言中也支持。

操作符 描述 示例
& 返回一个变量的地址 &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.