Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package com.javarush.test.level06.lesson05.task01;
  2.  
  3. /* Метод finalize класса Cat
  4. В классе Cat создать метод protected void finalize() throws Throwable
  5. */
  6.  
  7. public class Cat
  8. {
  9. private String name;
  10.  
  11. public Cat(String name)
  12. {
  13. this.name = name;
  14. }
  15.  
  16. protected void finalize() throws Throwable
  17. {
  18. System.out.println(name + " destroyed");
  19. }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement