Objective-C
Objective-C
Would anybody be able to explain to me what Objective-C is/what it's used for?
Re:Objective-C
Objective-C, as the name implies, is an OOP variant of C; it was developed around the same time as C++, and the two languages were rivals throughout the 1980s; Objective-C was the major language on the Next workstation.. While C++ eventually won out, Objective-C continued to be used in certain projects, such as the GNUStep window manager and the Cocoa development kit. The gcc compiler system supports Objective-C as a source language.chris wrote: Would anybody be able to explain to me what Objective-C is/what it's used for?
Objective-C took a very different approach to extending C than C++ did; rather than modify the core syntax, it instead embedded a Smalltalk-like sublanguage in the C code, which was marked off by square brackets. It also added features for separating 'interface' from 'implementation', similar to those in Ada or Eiffel.
The "Hello, World!" page gives us this example program:
Code: Select all
/* W.J. Antel Jr. 12/12/96
** Compile with gnu's gcc: gcc hello.m -lobjc
*/
#include
@interface Control:Object
{
}
- world;
void main();
@end
@implementation Control
- world
{
printf("Hello, World!\n");
}
void main()
{
id hello;
hello=[Control new];
for(;;)
[hello world];
}
@end
For more information, see the Objective-C FAQ.
Re:Objective-C
yeah, when I looked at OC, it really fely like I was programming in preprocessor or macros and very.. it felt not attached to C really.. I didnt like it.
-- Stu --