IT English Collection(9) of Objective-C
1 前言
? ? 今天我們來解除一篇有關Objective-C的介紹文章,詳情如下。
2 詳述
2.1 原文
? ? Objective-C defines a small but powerful set of extensions to the ANSI C programming language that enables sophisticated object-oriented programming. Objective-C is the native language for Cocoa programming—it’s the language that the frameworks are written in, and the language that most applications are written in. You can also use some other languages—such as Python and Ruby—to develop programs using the Cocoa frameworks. It’s useful, though, to have at least a basic understanding of Objective-C because Apple’s documentation and code samples are typically written in terms of this language.
? ? Because Objective-C rests on a foundation of ANSI C, you can freely intermix straight C code with Objective-C code. Moreover, your code can call functions defined in non-Cocoa programmatic interfaces, such as the BSD library interfaces in /usr/include. You can even mix C++ code with your Cocoa code and link them into the same executable.
2.2 生詞
?
extension [?k'sten?(?)n; ek-]? n. 延長;擴大
sophisticate [s?'f?st?ke?t] vt. 弄復雜
in terms of? 依據;按照
rest on 停留在;依靠
intermix [?nt?'m?ks] vt. 使…混雜;使…混合
Moreover [m??r'??v?] adv. 而且;此外
programmatic [pr??ɡr?'m?t?k] 綱領性
executable [?g'zekj?t?b(?)l; eg-] n. 可執行的;可實行的
3 結語
? ? 以上是所有內容,希望對大家有所幫助。
?
轉載于:https://www.cnblogs.com/suncoolcat/p/3341920.html
總結
以上是生活随笔為你收集整理的IT English Collection(9) of Objective-C的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 一道有意思的导论问题
- 下一篇: NSValue包装自定义结构体