Netbeans は、非静的メソッドから静的メソッドにアクセスするのは良くないと教えてくれました。なぜこれが悪いのですか?「静的メソッド getInstance へのアクセス」は警告です。
import java.util.Calendar;
public class Clock
{
// Instance fields
private Calendar time;
/**
* Constructor. Starts the clock at the current operating system time
*/
public Clock()
{
System.out.println(getSystemTime());
}
private String getSystemTime()
{
return this.time.getInstance().get(Calendar.HOUR)+":"+
this.time.getInstance().get(Calendar.MINUTE);
}
}