黑马程序员技术交流社区

标题: oc基础之匿名对象 [打印本页]

作者: linexs    时间: 2015-11-21 23:48
标题: oc基础之匿名对象
// 匿名对象
#import <Foundation/Foundation.h>
@interface Person : NSObject
{
@public
    int age;
    double height;
}
- (void)print;
@end

@implementation Person
- (void)print
{
    NSLog(@"年龄=%d,身高=%f", age, height);
}
@end

int main()
{
    [Person new]->age = 10;
    [Person new]->height = 1.8;
    [[Person new] print];
    return 0;
}



作者: zhizubule    时间: 2015-11-22 23:33
哇!真的是厉害,顶一个!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2