建立第一个真正的Objective-C程序
视频锁定
{$ currentTime | date:'mm:ss' $}
{$ timeLeft | date:'mm:ss' $}
下面的例子中,我们将告诉你如何建立一个真正的具有面向对象概念的Objective-C程序。这个程序虽然只是简单的显示一个字符串"这是类Test中的字符串",虽然之前我们也可以向屏幕输出一个字符串,但这次,我们为了证明Objective-C语言的面向对象属性,换了一种方法,具体请看:
#include <stdio.h> //引入C语言标准函数库(为了使用printf函数
#include <Foundation/Foundation.h> //引入Objective-C标准函数库
/*声明一个类Test并定义类中的方法classStringValue。*/
@interface Test
+ (const char *) classStringValue;
@end
/*实现一个类及方法classStringValue。 */
@implementation Test
+ (const char *) classStringValue;
{return "这是类Test中的字符串";
}
@end
int main(int argc, const char *argv[])
{
printf("%s\n", [Test classStringValue]); //使用C语言中的printf
return 0;
}
在线练习
{$ activeFileHint $}