本帖最后由 Mike001 于 2015-4-18 08:31 编辑
#import <Foundation/Foundation.h>
#import"Person.h"
int main()
{
Person *p = [Person new];
p.age = 10;
int a = p.age;
p.name= @"Jack";
NSLog(@"The age of that person is %d", a);
NSLog(@"The name of that person is %s", p.name);
return 0;
}
|