IT English Collection(9) of Objective-C
1 前言
今天我们来解除一篇有关Objective-C的介绍文章,详情如下。
2 详述2.1 原文Objective-C defines a small but powerful set ofextensions to the ANSI C programming language that enablessophisticated 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 writtenin terms of this language.
Because Objective-Crests on a foundation of ANSI C, you can freelyintermix 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 sameexecutable.
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 结语以上是所有内容,希望对大家有所帮助。