目录前言1. 区分实例变量与局部变量或参数2. 在构造器中调用另一个构造器3. 将当前对象作为参数传递4. 返回当前对象以支持方法链调用5. 在静态方法中不能使用 this综合示例注意事项总结前言
目录前言一、this关键字概述二、区分成员变量和局部变量2.1 问题背景2.2 使用this解决命名冲突2.3 对比表格:使用this与不使用this的区别三、调用当前类的构造方法3.1 构造方法重载中的this调用3.2 使用注意事项3.3
I have a NSMutableArray I get by loading a plist into it. The date field comes in as a string and i want to change it into a nsdate. I can change an nsstring into an nsdate.