Advertisement
Guest User

Untitled

a guest
Feb 17th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.15 KB | None | 0 0
  1. public class This
  2. {
  3.     private This dot;
  4.    
  5.     public This()
  6.     {
  7.         this.dot = new This();
  8.     }
  9.    
  10.     public This GetThis()
  11.     {
  12.         return this.dot;
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement