Advertisement
Nicksed

super

Nov 19th, 2021 (edited)
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. class Super {
  2.     public int index = 1;
  3. }
  4.  
  5. class App extends Super {
  6.  
  7.     public App(int index) {
  8.         index = index;
  9.     }
  10.  
  11.     public static void main(String args[]) {
  12.         App myApp = new App(10);
  13.         System.out.println(myApp.index);
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement