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.

BoolTest.java 278B

123456789101112131415
  1. package test5;
  2. public class BoolTest {
  3. static boolean i = false;
  4. public boolean test() {
  5. return i;
  6. }
  7. public boolean foo(boolean b) { return b; }
  8. public int run() {
  9. if (test())
  10. return 1;
  11. else
  12. return 0;
  13. }
  14. }