struct 與class 用法相近,但struct 不具繼承功能。 struct SPoint { var x: Int = 0 var y: Int = 0 } var sp ... struct 是value type,class 是reference type。
確定! 回上一頁