machine.java

来自「jnative java 调用动态库需要的包和dll」· Java 代码 · 共 19 行

JAVA
19
字号

package org.xvolks.jnative.misc.machine;

/**
 * $Id: Machine.java,v 1.3 2006/06/09 20:44:05 mdenty Exp $
 *
 * This software is released under the LGPL.
 * @author Created by Marc DENTY - (c) 2006 JNative project
 */
public class Machine {
	public static final int SIZE;
	
	static {
		//TODO find the current machine here to see if we should use 64 bits pointers
		SIZE = 1;
		//On AMD64 / Windows64 / Linux 64 set SIZE to 2
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?