Guest User

Untitled

a guest
Jun 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. class c {
  2. //Vars
  3. public static int totAntal;
  4.  
  5.  
  6. //Konstruktorer
  7. public c() {
  8. totAntal++;
  9. }
  10.  
  11.  
  12. //Metoder
  13. public static void Total() {
  14. System.out.println(c.totAntal);
  15. }
  16. }
  17.  
  18. public class Sid130 {
  19. public static void main(String []args) {
  20. c c1 = new c();
  21. c c2 = new c();
  22. c c3 = new c();
  23.  
  24. c.Total();
  25.  
  26. c c4 = new c();
  27. c c5 = new c();
  28.  
  29. c.Total();
  30. }
  31. }
Add Comment
Please, Sign In to add comment