摘要:
访问修饰符的可见域 • private—The member is accessible only from the top-level class where it is declared.• package-private—The member is accessible from any cl 阅读全文
摘要:
使用集成的 android-adt-bundle Android 项目目录说明 常用ui属性 用来选颜色不错 做ui的需要把l m h x几种规格的图片 控件学习参考资料主要看,比较详细 http://www.cnblogs.com/menlsh/tag/Android/ 后面资料文档老师没有上传Q 阅读全文
摘要:
属于查漏补缺 Java源文件经过编译生成一个class文件/字节码文件,帮你实现真正的跨平台。一个class编译后生成一个class文件。然后通过JVM(java虚拟机)解释执行。 java的8个基本数据类型: 四个整数类型: byte(1 字节数不同且范围不同2^7~2^7), short(2), 阅读全文
摘要:
comparable 与Collections.addAll(s,args) 搭配使用 官方说明准则 标准用法 阅读全文
摘要:
x.clone()!=x will be true x.clone().getClass()==x.getClass() will be true x.clone().equals(x) always true. 意味着深复制,新建对象,数据与结构与原对象一致, Copying an object 阅读全文
摘要:
for example,PhoneNumber@163b91 class name+@+unsigned hexadecimal representation of hashcode. define: a concise but informative representation that is 阅读全文
摘要:
you must override hashCode in every class that overrides equals,particularly HashMap,HashSet,Hashtable. The key provision that is violated when you fa 阅读全文
摘要:
title:重载equals方法要遵循的一般约定 Each instance of the class is inherently unique 实例存在主键 You don't care whether the class provides a "logical equality" test. s 阅读全文