oc-15-匿名对象
Posted 672530440
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oc-15-匿名对象相关的知识,希望对你有一定的参考价值。
/** 匿名对象 1.访问成员变量--->只能给成员变量设置值,只能成功1次,每次都是新的对象. 2.调用方法时类似类方法: 跟类方法区别:匿名对象创建对象了,开辟空间了. */ #import <Foundation/Foundation.h> #import "Student.h" int main(int argc, const char * argv[]) { @autoreleasepool { // 用匿名对象调用方法 [[Student new] studyWithStudent:[Student new]]; NSString *s = [[NSString alloc] initWithFormat:@"122"]; NSLog(@"%@",s); // 正常创建对象 Student *s = [Student new]; s->_age = 10; [[Student new] study]; // 创建匿名对象 [Student new]->_age = 20; // 这是1个对象 // 输出成员变量值 NSLog(@"%d",[Student new]->_age);//另一个对象 // 用匿名对象调用方法 [[Student new] study]; // 这是另外1个对象 [[Student new] study]; // 跟上面不是1个对象. } return 0; }
以上是关于oc-15-匿名对象的主要内容,如果未能解决你的问题,请参考以下文章
Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段