1. 程式人生 > >phper 的Goland學習之路--- type 別名

phper 的Goland學習之路--- type 別名

1 . 在c語言中,有個專門給資料型別起別名的關鍵字:typedef   。而在go語言中,使用type關鍵字起別名。

2 .  type 別名的使用:

    (1)  type  別名  int ;    type 別名   float ;

    (2) 別名組: type  (

                            別名   int 

                            別名  bool

                )

(3)使用別名來定義變數  :  var  a  別名 = 12 ;

3. 宣告結構體 型別: 

    type  別名  struct{  成員變數  } 

4.  宣告一個介面:

    type  名  interface{   }