Swift 構造体
構造体(struct)とは
クラスと同様にカプセル化を実現する方法として提供されている機能。
struct selfIntroduction {
var name: String
var age: Int
}
var all = selfIntroduction(name: "kunio", age: 21)
print("name: \(all.name)")
print("age:\(all.age)")
初期値がある場合インスタンスに引数を設定する必要はない。
struct selfIntroduction {
var name: String = "kunio"
var age: Int "21"
}
var all = selfIntroduction()
print("name: \(all.name)")
print("age:\(all.age)")
イニシャライザについて
https://qiita.com/KunioTerada/items/1a7611924b8e97668c6f
クラスと構造体の違い
大きな違いは2つある
- 参照型であるか
- 継承が可能であるか
クラスは参照型であり、継承ができる。
構造体は値型であり、継承ができない。
随時更新
Author And Source
この問題について(Swift 構造体), 我々は、より多くの情報をここで見つけました https://qiita.com/KnoTrd/items/61d89ecf288018621963著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .