IOS中方法和函数的区别

2019-11-20  本文已影响0人  success_flower

区别

#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];
    //方法调用
    Math *m = [Math new];
    [m method_001];
    //函数调用
    method_002();
    method_003();
}
@end

上一篇下一篇

猜你喜欢

热点阅读