Objective-C Learn-Apple
Objective-C Learn About Objective-C Objective-C is the primary programming language you use when writing software for OS X and iOS. It’s a superset of the C programming language and provides object-oriented capabilities and a dynamic runtime. Objective-C inherits the syntax, primitive types, and flow control statements of C and adds syntax for defining classes and methods. It also adds language-level support for object graph management and object literals while providing dynamic typing and binding, deferring many responsibilities until runtime. Objective-C的就是你的OS X和iOS編寫軟件時所使用的主要程式語言。 這是繼承自C語言的一種程式語言,並提供物件導向功能和動態。 Objective-C的繼承了語法,基本類型和判斷流程的C語言,並增加了語法定義的類和方法。 它還增加了語言級的支持對象圖管理和對象文本,同時提供弱型別與強型別的語言支持,延遲執行許多責任,直到執行時期。 名詞解釋: > runtime 執行時期(Run time)在電腦科學中代表了一個電腦程式運作、執行的時期,從開始執行到終止執行。與執行時期相對的其他時期包括: 設計時期(design time)、編譯時期(compile time)、鏈結時期(link time)、與載入時期(load time)。 而執行環境是一種為正在執行的程式或程式提供軟體服務的虛擬機械環境。它有可能是由作業系統自行提供,或由執行此程式的母程式提供。 ...