Advertisement
Guest User

Untitled

a guest
May 29th, 2015
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class A{
  2. public static A a;
  3. static{
  4. a = new A();
  5. }
  6. }
  7. class B{
  8. A poleA;
  9. public B(){
  10. poleA = A.a;
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement