Source of TestStuff20190122.java


  1: //TestStuff20180122.java
  2: 
  3: public class TestStuff20190122
  4: {
  5:     private static int i;
  6:     private static String s;
  7:     private static boolean b;
  8:     private int k;
  9: 
 10:     public static void main(String[] args)
 11:     {
 12:         int j = 1;
 13:         System.out.println(i);
 14:         System.out.println(s);
 15:         System.out.println(b);
 16:         System.out.println(j);
 17:         display();
 18:         TestStuff20190122 obj = new TestStuff20190122();
 19:         obj.show();
 20:     }
 21:     public static void display()
 22:     {
 23:         System.out.println(i);
 24:     }
 25:     public void show()
 26:     {
 27:         System.out.println(k);
 28:     }
 29: }
 30: