Go語言其它運算子範例

2019-10-16 23:16:43

還有一些其他重要的運算子包括sizeof? :,在Go語言中也是支援的。

運算子 描述 範例
& 返回變數的地址 &a將給出變數a的實際地址。
* 指向變數的指標 *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.