📄 nativecallback.java
字号:
import proguard.annotation.*;/** * This application illustrates the use of annotations for configuring ProGuard. * * After having been compiled, it can be processed using: * java -jar proguard.jar @examples.pro * * The annotation will preserve the class and its main method. */@KeepApplicationpublic class NativeCallBack{ /** * Suppose this is a native method that computes an answer. * * The -keep option regular ProGuard configuration will make sure it is * not renamed when processing this code. */ public native int computeAnswer(); /** * Suppose this method is called back from the above native method. * * ProGuard would remove it, because it is not referenced from java. * The annotation will make sure it is preserved anyhow. */ @Keep public int getAnswer() { return 42; } public static void main(String[] args) { int answer = new NativeCallBack().computeAnswer(); System.out.println("The answer is " + answer); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -