上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 访问修饰符的可见域 • private—The member is accessible only from the top-level class where it is declared.• package-private—The member is accessible from any cl 阅读全文
posted @ 2016-07-12 14:27 郁闷紫番薯 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 使用集成的 android-adt-bundle Android 项目目录说明 常用ui属性 用来选颜色不错 做ui的需要把l m h x几种规格的图片 控件学习参考资料主要看,比较详细 http://www.cnblogs.com/menlsh/tag/Android/ 后面资料文档老师没有上传Q 阅读全文
posted @ 2016-07-10 22:33 郁闷紫番薯 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 属于查漏补缺 Java源文件经过编译生成一个class文件/字节码文件,帮你实现真正的跨平台。一个class编译后生成一个class文件。然后通过JVM(java虚拟机)解释执行。 java的8个基本数据类型: 四个整数类型: byte(1 字节数不同且范围不同2^7~2^7), short(2), 阅读全文
posted @ 2016-07-08 22:05 郁闷紫番薯 阅读(120) 评论(0) 推荐(0) 编辑
摘要: comparable 与Collections.addAll(s,args) 搭配使用 官方说明准则 标准用法 阅读全文
posted @ 2016-07-05 14:53 郁闷紫番薯 阅读(107) 评论(0) 推荐(0) 编辑
摘要: x.clone()!=x will be true x.clone().getClass()==x.getClass() will be true x.clone().equals(x) always true. 意味着深复制,新建对象,数据与结构与原对象一致, Copying an object 阅读全文
posted @ 2016-07-01 17:36 郁闷紫番薯 阅读(148) 评论(0) 推荐(0) 编辑
摘要: for example,PhoneNumber@163b91 class name+@+unsigned hexadecimal representation of hashcode. define: a concise but informative representation that is 阅读全文
posted @ 2016-06-08 15:06 郁闷紫番薯 阅读(101) 评论(0) 推荐(0) 编辑
摘要: you must override hashCode in every class that overrides equals,particularly HashMap,HashSet,Hashtable. The key provision that is violated when you fa 阅读全文
posted @ 2016-06-07 09:39 郁闷紫番薯 阅读(182) 评论(0) 推荐(0) 编辑
摘要: title:重载equals方法要遵循的一般约定 Each instance of the class is inherently unique 实例存在主键 You don't care whether the class provides a "logical equality" test. s 阅读全文
posted @ 2016-05-26 18:35 郁闷紫番薯 阅读(203) 评论(0) 推荐(0) 编辑
摘要: Finalizers are unpredictable,often dangerous,and generally unnecessary,in java. may cause poor ferformance,instability behavior,and portability(移植) pr 阅读全文
posted @ 2016-05-25 19:27 郁闷紫番薯 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 其他的可能网上都有,其中一种比较坑爹的可能是,你在控制面板里修改了账户名,然而这并不是远程桌面的登录名。 远程桌面真正的用户名 要再我的电脑右键-管理-系统工具-本地用户和组-用户 这里把administration修改一下,系统注销一下,就可以了。 阅读全文
posted @ 2016-05-25 17:12 郁闷紫番薯 阅读(233) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页