美文网首页
基本函数的写法

基本函数的写法

作者: DarkSkyyy | 来源:发表于2017-09-07 15:10 被阅读0次

    1.无参数无返回值的函数

    - (void)thisIsFunction
    {
        NSLog(@"这是无参数无返回的函数");
    }
    

    2.有参数无返回值的函数

    - (void)thisIsFunction:(NSString *)name age:(NSInteger)age
    {
        NSLog(@"这是有参数无返回值的函数");
    }
    

    3.无参数有返回值的函数

    - (NSString *)thisIsFunction
    {
        return @"这是无参数有返回值的函数";
    }
    

    4.有参数有返回值的函数

    - (NSString *)thisIsFunction:(NSString *)name age:(NSInteger)age
    {
        return @"这是有参数有返回值的函数";
    }
    

    相关文章

      网友评论

          本文标题:基本函数的写法

          本文链接:https://www.haomeiwen.com/subject/flyijxtx.html