以下のコードを教えてください。エラーは次のとおりです。「静的コンテキストではこれを使用できません」
public class Sample2 {
/**
* @param args
*/
public static void main(String[] args)
{
Sample2 sam=new Sample2();
//Below code works fine
System.out.println(sam);
//Below code is displaying error
System.out.println(this);
}
}