摘要: 1 public class MainActivity extends Activity { 2 3 final String FILE_NAME = "crazyit.bin"; 4 5 @Override 6 protected void onCreate(Bundle savedInstanc 阅读全文
posted @ 2016-02-15 14:44 鲸歌 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: 1.ArrayList是实现了基于动态数组的数据结构,LinkedList基于链表的数据结构。2.对于随机访问get和set,ArrayList优于LinkedList,因为LinkedList要移动指针。3.对于新增和删除操作add和remove,LinkedList比较占优势,因为ArrayLi 阅读全文
posted @ 2016-02-15 10:55 鲸歌 阅读(159) 评论(0) 推荐(0) 编辑
摘要: // 在接口中声明一个处理耗时操作结果的回调方法。 // Local 实现这个接口,实现处理耗时操作结果的回调方法。 // Local 获得 Remote 对象,在子线程中调用 Remote 的处理耗时操作的方法 // Remote 处理耗时操作的方法需要传入回调接口的实现类的对象 // Remot 阅读全文
posted @ 2016-02-15 10:21 鲸歌 阅读(135) 评论(0) 推荐(0) 编辑