私は以下のように2つのクラスを持っています
public class statictest {
public void print()
{
System.out.println("first one");
}
}
public class newer extends statictest
{
public void print()
{
System.out.println("second one");
}
}
そして、私が行う主な機能で
statictest temp = new newer();
newer temp2 = new newer();
temp.print();
temp2.print();
出力は次のとおりです。
second one
second one
しかし、これら2つのメソッドを静的にすると、出力は
firstone
secondone
この場合、遅延バインディングはどうなりましたか?? 誰でも説明できますか