overload.java

来自「gcc的组建」· Java 代码 · 共 19 行

JAVA
19
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?