All pastes #2126531 Raw Edit

Mine

public java v1 · immutable
#2126531 ·published 2012-03-10 04:05 UTC
rendered paste body
public class TestClass{  private int f = 1;    public static void main(String[] args)  {    TestClass i = new TestClass();    i.m();  }    public void m()  {    System.out.println("f = " + f);    System.out.println("this = " + this);  }}