2番目と3番目からサブコンストラクターを取得するにはどうすればよいですか? パブリックアブストラクトが最初に機能しないので?
public abstract class First {
public Point position;
public First() {} //how do i make this constructor like an abstract?
// so that it will go get Second constructor or Third
}
public class Second extends First {
public Second (Point x) {
position = x;
}
}
public class Third extends First {
public Third(Point x) {
position = x;
}
}