成员变量

简介: Student.h: #import @interface Student : NSObject{ // @public // @private // @protected //y一般默认的情况是@pr...

Student.h:

#import <Foundation/Foundation.h>

@interface Student : NSObject{
    //    @public
    //    @private
    //    @protected
    //y一般默认的情况是@protected
    int age;
    @private
    int no;
    @public
    float height;
}
//-(void) age;
@property(nonatomic,assign) int age;
@end

Student.m:

#import "Student.h"

@implementation Student

@end

GoodStudent.h:

#import "Student.h"

@interface GoodStudent : Student

@end

GoodStudent.m:

#import "GoodStudent.h"

@implementation GoodStudent
-(void) test{
    age=10;
    //no=9;
    height=0.1f;
}
@end

main:

#import <Foundation/Foundation.h>
#import "Student.h"
int main(int argc, const char * argv[])
{

    @autoreleasepool {
        
        Student *stu=[[[Student alloc] init] autorelease];
        //点语法不是访问成员变量,是访问get和set方法
        stu.age=10;
        //通过get方法调用成员变量
        NSLog(@"age is %i",stu.age);
        //这样才是访问@public成员变量
        stu->height=10.9f;
        NSLog(@"height is %.1f",stu->height);
        
    }
    return 0;
}

结果:

2013-08-02 15:12:25.051 成员变量[988:303] age is 10

2013-08-02 15:12:25.072 成员变量[988:303] height is 10.9


相关文章
类成员指针和类成员变量指针
类成员指针和类成员变量指针
100 0
|
4月前
成员变量、局部变量和静态变量的区别
成员变量、局部变量和静态变量的区别
25 0
|
6月前
|
存储
成员变量和类变量的区别:
成员变量和类变量的区别:
|
6月前
|
存储 监控 编译器
【C++】static关键字及其修饰的静态成员变量/函数详解
【C++】static关键字及其修饰的静态成员变量/函数详解
144 3
|
6月前
|
Java
局部变量和成员变量
局部变量和成员变量1.定义的位置不一样【重点】局部变量:在方法的内部成员变量:在方法的外部,直接写在类当中2.作用范围不一样【重点】局部变量:只有方法当中才可以使用,出了方法就不能再用成员变量:整个类全都可以通用。3.默认值不一样【重点】局部变量:没有默认值,如果要想使用,必须手动进行赋值成员变量:如果没有赋值,会有默认值,规则和数组一样4.内存的位置不一样(了解)局部变量:位于栈内存成员变量:位于堆内存5生命周期不一样(了解)局部变量:随着方法进栈而诞生,随着方法出栈而消失成员变量:随着对象创建而诞生,随着对象被垃圾回收而消失当方法的局部变量和类的成员变量重名
|
6月前
|
编译器
static关键字修饰成员变量与成员函数
1. static概念 声明 为static的类成员称为类的静态成员,用static修饰的成员变量,称为静态成员变量;用static修饰的成员函数,称为静态成员函数,都存放在堆区。 静态成员变量一定要在类外进行初始化。
116 0
|
Java
成员变量与局部变量
成员变量与局部变量
117 0
|
存储
局部变量和成员变量的4个区别
定义位置不同、内存中的位置不同、周期不同、初始化不同。
116 0
【C++之成员函数】类外定义成员函数
【C++之成员函数】类外定义成员函数