overload.java 365 B

12345678910111213141516171819
  1. // Test to make sure overloaded functions with long names work.
  2. public class overload
  3. {
  4. static
  5. {
  6. System.loadLibrary ("overload");
  7. }
  8. public static native int over (int one);
  9. public static native int over (int one, int two);
  10. public static void main (String[] args)
  11. {
  12. System.out.println (over (1));
  13. System.out.println (over (1, 2));
  14. }
  15. }