Swift/Declaration/var: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

10 November 2022

  • curprev 21:1521:15, 10 November 2022 imported>Fire 1,121 bytes +1,121 Created page with "変数を定義するときに使用する。変更しない場合は、varよりもこちらを推奨。 == Simple な構文 == <syntaxhighlight lang="Swift"> let valiable name: type = expression </syntaxhighlight> == Getter, Setter == get に式を入れて、return で返すとかできる。setは、設定したときに呼び出される。設定した値は ''newValue'' で読み出せる。 [https://qiita.com/miyakooti/items/a8ac0896eb912c60bd1f 参考] <synta..."