OC-NSArray(¶þ)
// Person1.h
// 12.18
//
// Created by lanqs on 14/12/19.
// Copyright (c) 2014Äê . All rights reserved.
//
#import
@interface Person1 : NSObject{
NSString *_name;
NSInteger _age;
}
- (id)initWithName:(NSString *)name age:(NSInteger)age;
- (NSComparisonResult)comparAge:(Person1 *)person;
- (void)setAge:(NSInteger)age;
- (NSInteger)age;
@end