You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Proceed.java 256B

123456789101112
  1. package test1;
  2. @SuppressWarnings("unused")
  3. public class Proceed {
  4. public int p(int i, int j) { return i + j; }
  5. public int k1(int j) { return j; }
  6. private int k2(int j) { return j + 1; }
  7. private static Proceed another = new Proceed();
  8. }