Guest User

Untitled

a guest
Feb 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. what static keyword do in java and how to use it
  2.  
  3.  
  4. static classes
  5. ---
  6. you can not define static classes as general but subclasses can be static as a class member.
  7.  
  8.  
  9. static methods
  10. ---
  11. you can access static methods without any object and only with class reference.
  12.  
  13. static methods can not be overriden.
  14.  
  15.  
  16. static variables
  17. ---
  18. you can access static variables without any object creation and only with class reference.
  19. static variables allocate static memory.
Add Comment
Please, Sign In to add comment