Guest User

Untitled

a guest
Jan 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. class A{
  2. static public void methodA()
  3. }
  4.  
  5. static class B{
  6. static public void methodB()
  7. }
  8.  
  9. static class C{
  10. public void methodC()
  11. }
  12.  
  13. class A{
  14. public static int STATIC_VALUE = 1; // is a valid static variable
  15.  
  16. public static void method1(){
  17. //is a valid static method
  18. }
  19.  
  20. /**
  21. * Is a valid static inner class
  22. */
  23. static class innerClassB{
  24.  
  25. }
  26. }
Add Comment
Please, Sign In to add comment