Guest User

Untitled

a guest
Nov 21st, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class Foo {
  2.  
  3. private int a = 1;
  4.  
  5. public int getA() {
  6. return this.a;
  7. }
  8.  
  9.  
  10. public void test() {
  11.  
  12. System.out.println( this.a ); //1
  13. System.out.println( getA( )); //1
  14. }
  15.  
  16. } //class
Add Comment
Please, Sign In to add comment