[Swift] exit(0)で強制終了したいのにerror: cannot find 'exit' in scope exit(0)で怒られた時の解決策

競プロ中にプログラムを強制終了したかった

使用したコード

stopTasks()

func stopTasks(){
  exit(0)
}

コンパイルエラー


exit(0)のexitが見つからないらしい

error: cannot find 'exit' in scope  exit(0)

解決策

import Foundation


Appleはなんて書いているのかというと

Foundation

Access essential data types, collections, and operating-system services to define the base layer of functionality for your app.

https://developer.apple.com/documentation/foundation

アプリの基底にある機能を定義するシステム、コレクションやデータの型などにアクセスする時に必要なものらしいです

いいなと思ったら応援しよう!