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 1 year has passed since last update.

Grand Central Dispatch用語集

Posted at

GCDとは?

  • iOSにて、並列実行タスクをするために提供している言語機能のこと。
  • 開発を行うにあたり、DispatchQueueを使ってスレッドでの処理を管理することができる。
  • また、GCDのQueueは追加されたタスクを追加されたのが早い順番から処理する性質を持っている。

用語集

  • プロセス
    • アプリケーションの実行インスタンスのこと。
  • スレッド
    • プロセスが実行する処理などを格納したもの
  • タスク
    • スレッドに格納される具体的な処理の単位のこと
  • キュー
    • アプリケーションに含まれるスレッドを管理するためのAPIのこと。
    • スレッドの作成、管理の役割を担う
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?