oc-04-类的声明和实现

Posted 672530440

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oc-04-类的声明和实现相关的知识,希望对你有一定的参考价值。

//main.m
//10-【掌握】类的声明和实现
//.h为类的声明,.m为类的实现,+表示类方法静态方法,-表示对象方法。.h文件中的方法都是public不能更改的。变量3中访问域:public,protected(子类),private(本类)。
#import <Foundation/Foundation.h>

//声明类
@interface Person : NSObject(父类名)
{
    //声明属性变量的时候 前面一定要加下划线.
    NSString * _name;
    int _age;
    float _weight;
}
//声明方法
- (void)eat;
- (void)run;
+ (void)breath;
@end



//对人类 做一个实现类  要实现哪个类 就在 @implementation 后面 放哪个类的类名.
@implementation Person
//实现方法
- (void)eat{
    NSLog(@"吃吃吃吃");
}
- (void)run{
    NSLog(@"跑跑跑");
}
+ (void)breath{
    NSLog(@"xxixixixix");
}
@end



int main(int argc, const char * argv[]) {
    @autoreleasepool {
        // insert code here...
        NSLog(@"Hello, World!");
    }
    return 0;
}

 

以上是关于oc-04-类的声明和实现的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段8——声明函数

Objective-C面向对象

[Objective-C]简单实现一个OC类

深入delphi编程理解之接口接口与类的异同及接口的声明和实现

Xcode自定义代码块

java 代码片段