前一篇介紹了 structure,
我們將主要在這篇文章中討論 structure 的實例。
struct MyStructure {
var message = "hello"
func myFunction() {
print(message)
}
}
struct MyStructure {
var message = "hello"
func myFunction() {
print(message)
}
}
var a = MyStructure()
struct MyStructure {
var message = "hello"
func myFunction() {
print(message)
}
}
var a:MyStructure = MyStructure()
它們的資料形態就是這個 struct 的名字。