伪代码 public void updateUser(BufferedWriter writer, BufferedReader reader) { List<User> array = new ArrayList<User>(); User st = new User(); String line; int count = 0; try { while ((line = reader.readLine()) != null) { // line 每次得到一行数据 String[]…
ARC是cocoa系统帮你完成对象内存释放的引用计数机制 .h文件 // Person.h // 01-ARC // // Created by ma c on 15/8/13. // Copyright (c) 2015年. All rights reserved. // #import <Foundation/Foundation.h> @interface Person : NSObject @property(nonatomic,strong)NSString *name; @prop…
手机内存下的类的设计练习: 设计Book类, 1.三个成员变量: title(书名)author(作者).price(价格) 2.不使用@property,自己完成存取方法(set方法,get方法) 3.加入必要其他的方法 4.并对Book类进行测试 .h声明文件 // Book.h // 引用计数器 // // Created by ma c on 15/8/13. // Copyright (c) 2015年. All rights reserved. // #import <Fo…