发布时间:2015-12-05 14:20:12
identityHashCode的官方API说明:Returns the same hash code for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode(). The hash code for the null reference is zero.返回的hashCode与默认的hashCode方法返回值一样,无论hashCod.........【阅读全文】
发布时间:2015-12-05 13:44:00
System.getProperties()与System.getenv()的区别1、System.getenv():获取的是操作系统的变量如,path,java_home等,在系统环境变量里面进行配置;2、System.getProperties():获取的JAVA虚拟机的运行时环境变量,是数据java虚拟机自己的,通过-Dxxxx参数进行指定;如java.runtime.name,sun.boot.library.path等;举.........【阅读全文】
发布时间:2015-04-08 10:31:44
Linux下端口占用问题1、 环境操作系统:centos 6.3 64位JDK:OpenJDK1.72、 前提1) C程序通过shell脚本来启动一个java程序。2) C程序需要打开一个TCP端口等待客户端连接;(C程序.........【阅读全文】