oc类的实现

OC方法的签名:

方法签名由多部分组成,每一部分签名都说明参数含义,所以方法的签名具有自说明性,例如:

-(void)setName:(NSString*)aName age:(int)aAge

方法签名为setName:age:
说明这个方法是用来设置姓名和年龄的,具有两个参数

  • 方法的第一个参数必须以:开头,:是签名的一部分
  • 方法的第二部分签名age可以省略,但:不可以省略,省略后方法的签名为setName::
 -(void)setName:(NSString*)aName :(int)aAge
  • 如果无参,则省略冒号
方法不能重载

在同一个类的方法不能重载,即方法的签名不能完全一样,但类方法和实例方法签名可以相同。

  • 方法的签名和参数类型,参数名称无关
  • 方法签名和方法的返回值类型无关
-(int) g:(int) x;
-(int) g:(float) x;//Error:this mothod is not differernt from the previous one(no label)

-(int) g:(int) x:(int) y;//OK,two anonymous labels
-(int) g:(int) x:(float) y;//Error:not different from the previous one

-(int) g:(int) x andY:(int)y;//OK:second label is "andY"
-(int) g:(int) x andY:(float) y;//Error:not difference from the previous one

-(int) g:(int) x andAlsoY:(int)y;//OK:second label is "andAlsoY",different from "andY"

类的定义
#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface ASStudent : NSObject{
    @protected
        NSString * name;
    @private
        NSString *sid;
    @public
        unsigned int age;
    
}
//"+"号为类方法,可以直接用类名来调用,作用是创建一个实例
  +(void)print;

    //"-"号为实例方法,类的实例才可以调用
  -(NSString*)name;
  -(NSString*)setName:(NSString*)aName;
  -(int)age;
  -(void)setAge:(int)aAge;


@end

NS_ASSUME_NONNULL_END

类的实现
#import "ASStudent.h"

@implementation ASStudent

-(void)setName:(NSString*)aName{
    name = aName;
}
-(NSString*)name{
    return name;
}

 
-(int)age{
    return age;
}
-(void)setAge:(int)aAge{
    age = aAge;
}
+(void)print{
    NSLog(@"ok");
}
@end

这里有两个地方是需要注意的
实例方法可以直接引用类的实例变量和其他实例方法
类的方法都是public的,没有protected和private方法,但是如果一个方法只出现在类的视线里,没有出现在类的声明里,那么这个方法可以认为是私有方法。

类的实例化
        ASStudent* student = [[ASStudent alloc] init];
 	      student->age =20;

        [student setName:@"Tom"];
        NSLog(@"%@",[student name]);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Αиcíеиτеǎг

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值