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 3 years have passed since last update.

【備忘録】Swift 実践入門について 第11章

Last updated at Posted at 2020-12-14

Swift 実践入門のまとめ。
分からない部分の抜粋も記載し、解決できたら随時更新していきます。
なお、ここに記載している以外でも「わけわからん…」となっている部分も多々ありますが、
今は必要ない、と言い聞かせて飛ばしています。

第11章
モジュール 作成したプログラムを別のプログラムでも使えるもの
理解度:50%くらいか

要は部品。その部品単体でも機能するし、他のモジュール(部品)と組み合わせて使うこともできる。
モジュールにアクセスできるレベル設定や、そのモジュールの中身をぱっと見て取れる
モジュールヘッダなどもある。

11-2
Package()というPackage型の引数にdependenciesを記述する。
let package = Package(name : “Example”, dependencies : [~])

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?