區(qū)別
- 函數(shù):屬于整個文件,可以直接調(diào)用
- 方法:依賴于類惹想,只能通過實例對象或者類調(diào)用
#import "TestViewController.h"
static void method_002(){
NSLog(@"--- %s----", __func__);
}
extern void method_003(){
NSLog(@"--- %s----", __func__);
}
@interface Math : NSObject
@end
@implementation Math
- (void)method_001{
NSLog(@"--- %s----", __func__);
}
@end
@interface TestViewController ()
@end
@implementation TestViewController
- (void)viewDidLoad {
[super viewDidLoad];
//方法調(diào)用
Math *m = [Math new];
[m method_001];
//函數(shù)調(diào)用
method_002();
method_003();
}
@end
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者