0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Swift学習まとめ】 変数と定数

Last updated at Posted at 2019-04-24

自分の学習の振り返りとしてこれからちょくちょく投稿していきます。
まだまだ内容としては不足していると思うので、今後も学習を進め内容を充実させていきたいと思います。

#変数とは
任意のデータをコンピュータのメモリ内に一時的に格納する機能です。
コンピュータ内に用意する箱のようなものとしてイメージすればわかりやすいかとおもいます。

主な特徴
・値を後から上書きできる

変数の宣言の書式
var 変数名 : 型 = 値
スクリーンショット 2019-04-24 17.36.46.png

#定数とは
変数と同様にデータを一時的に格納する機能です。
変数との違いとしては、値を後から変更することができません。

主な特徴
・値を上書きできない

定数の宣言の書式
let 定数名 : 型 = 値
スクリーンショット 2019-04-24 17.52.41.png

#参考文献
[](https://www.amazon.co.jp/絶対に挫折しないiPhoneアプリ開発「超」入門-【Xcode-完全対応-Informatics-IDEA/dp/4797398558/ref=sr_1_1?__mk_ja_JP=カタカナ&keywords=swift&qid=1556158650&s=gateway&sr=8-1

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?