`
dabing521
  • 浏览: 3519 次
  • 性别: Icon_minigender_1
文章分类
社区版块
存档分类
最新评论
文章列表
自动装箱与拆箱 1.实际上在编译器编译过程中使用Integer.valueOf(xxx)转换成Integer对象 拆箱则是调用integer对象的intValue方法;(可以自行查看.class文件) 2.Integer.valueOf(xxx) 默认情况是-128~127返回原始值 超过范围则返回Integer对象,因此 Integer i = 200; Integer j = 200; i == j是false 查看下面的源码 public static Integer valueOf(int i) { assert IntegerCache.high >= 12 ...

java core dump分析

    博客分类:
  • java
http://www.huomo.cn/os/article-1bb3e.html
以前看的东西多,写的东西少,很少有拿出手的东西。看过了忘记了,忘记了用的时候还得从新整理,为了克服这个不好的习惯,从此开始写属于自己的博客和代码。    今天看到Void类,那就从无开始吧。Void类包路径java.lang包下,注释中这么描述Void类 The Void class is an uninstantiable placeholder class to hold a reference to the Class object representing the Java keyword void. 中文:Void 类是一个不可实例化的占位符类,它持有对表示 Java 关键字 voi ...
Global site tag (gtag.js) - Google Analytics