Guest User

Untitled

a guest
May 24th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. package viikko2;
  2.  
  3. // SOVELLUSLUOKKA == APPLICATION CLASS
  4. public class OppilasHallinta {
  5.  
  6. /**
  7. * @param args
  8. */
  9. public static void main(String[] args) {
  10. // TODO Auto-generated method stub
  11. // LUO OPISKELIJA OLIO
  12. Oppilas opiskelija = new Oppilas();
  13. // KÄYTTÄÄ SET METODIA
  14. opiskelija.setEtunimi("Matti");
  15. // KÄYTTÄÄ GET METODIA
  16. System.out.println(opiskelija.getEtunimi());
  17.  
  18. }
  19.  
  20. }
Add Comment
Please, Sign In to add comment