码迷,mamicode.com
首页 > 其他好文 > 详细

OC中的 延展

时间:2016-03-05 09:06:29      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

#import <Foundation/Foundation.h>

@interface Student : NSObject

-(void)Dothing;

@end

 

#import "Student.h"

 

@interface Student ()

-(void)Sleep;

@end

 

#import "Student.h"

 

@implementation Student

-(void)Dothing

{

    NSLog(@"Dothing");

}

-(void)Sleep

{

    NSLog(@"Sleep");

}

@end

 

#import <Foundation/Foundation.h>

#import "Student.h"

//#import "Student_Sleep.h"

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

{

    @autoreleasepool

{

        Student *stu=[[Student alloc] init];

        [stu Dothing];

        [stu Sleep];    

    }

    return 0;

}

 

OC中的 延展

标签:

原文地址:http://www.cnblogs.com/tmf-4838/p/5244068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!