下面是编程之家 jb51.cc 通过网络收集整理的代码片段。@H_502_1@
编程之家小编现在分享给大家,也给大家做个参考。@H_502_1@
public static boolean is64BitVM() { String bits = System.getProperty("sun.arch.data.model"); if (bits != null) { return bits.equals("64"); } else { // probably sun.arch.data.model isn't available // maybe not a Sun JVM? // try with the vm.name property return System.getProperty("java.vm.name").contains("64"); } }
以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。@H_502_1@