📄 overload.java
字号:
// Test to make sure overloaded functions with long names work.public class overload{ static { System.loadLibrary ("overload"); } public static native int over (int one); public static native int over (int one, int two); public static void main (String[] args) { System.out.println (over (1)); System.out.println (over (1, 2)); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -