Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. program program1
  2.  
  3. class Osnovna
  4. {
  5.     {
  6.         void metoda1() {}
  7.     }
  8. }
  9.  
  10. class Izvedena extends Osnovna
  11. {
  12.     {
  13.         void metoda1() {}
  14.     }
  15. }
  16.  
  17. {
  18.     void main() Osnovna o;
  19.     {
  20.         o = new Izvedena;
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement