⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jnidemo1.java

📁 精通Java核心技术源代码
💻 JAVA
字号:
public class JNIDemo1
	{
		public native int intMethod(int n);
		public native boolean booleanMethod(boolean bool);
		public native String stringMethod(String text);
	
		public static void main(String[] args)
		{
	    		System.loadLibrary("JNIDemo1");
	     	JNIDemo1 jd = new JNIDemo1();
	       	int square = jd.intMethod(5);
	       	boolean bool = jd.booleanMethod(true);
	       	String text = jd.stringMethod("Java");
	       	System.out.println("intMethod: " + square);
	       	System.out.println("booleanMethod: " + bool);
	      	System.out.println("stringMethod: " + text);
	 	}
	}

⌨️ 快捷键说明

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