A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

#import <Foundation/Foundation.h>

//类的声明
@interface Person : NSObject
{
    @public
    NSString *_name;
    NSString *_dog;
}

//类的方法
- (void) eat;
- (void) run;

@end

//类的实现
@implementation Person

//类的方法的具体实现
- (void) eat{

    NSLog(@"%@在吃饭",_name);
}
- (void) run{
    NSLog(@"%@在跑",_dog);

}


@end


int main(int argc, const char * argv[]) {
    @autoreleasepool {

        //定义Person的对象
        Person *person = [Person new];

        //访问实例变量
        person->_name =@"包子";
        person->_dog =@"大黄";

        //调用方法
        [person eat];
        [person run];


    }
    return 0;
}

1 个回复

倒序浏览
赞!!!!!!!!!!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马