首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 系统运维 >

对象内存地址的获取以及关于System 种

2012-06-27 
对象内存地址的获取以及关于System 类对象内存地址的获取以及关于System 类?public class Address{??? sta

对象内存地址的获取以及关于System 类

对象内存地址的获取以及关于System 类

?

public class Address
{
??? static final Integer i1 = new Integer(5);
??? ?final Integer i2 = new Integer(15);
??? public static void main(String[] args)
??? {
??? ??? String s1 = "what";
??? ??? String s2 = "are";
??? ??? System.out.println(Integer.toHexString(s1.hashCode()));
??? ??? System.out.println(Integer.toHexString(s2.hashCode()));
??? ??? System.out.println(Integer.toHexString(System.identityHashCode(s1)));
??? ??? Address a = new Address();
??? ??? Address b = new Address();
??? ??? System.out.println(Integer.toHexString(System.identityHashCode(a.i1)));
??? ??? System.out.println(Integer.toHexString(System.identityHashCode(b.i1)));
??? ???
??? ??? System.out.println(Integer.toHexString(System.identityHashCode(a.i2)));
??? ??? System.out.println(Integer.toHexString(System.identityHashCode(b.i2)));
??? }
???
}

//////////////////////////////////////////////////////////////////////////////////////////

public final class System extends Object

System 类包含一些有用的类字段和方法。它不能被实例化。
在 System 类提供的设施中,有标准输入、标准输出和错误输出流;对外部定义的属性和环境变量的访问;加载文件和库的方法;还有快速复制数组的一部分的实用方法。

热点排行