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.

StaticConsBody.java 230B

123456789101112131415161718
  1. package test1;
  2. public class StaticConsBody {
  3. public static int i;
  4. public int j;
  5. static {
  6. i = 3;
  7. }
  8. public StaticConsBody() {
  9. j = 2;
  10. }
  11. public int run() {
  12. return i + j;
  13. }
  14. }