如果我正确理解了你的问题,你想在
,意思是如果
LineSegment
而不是
PercentageSegment
interface DrawableSegment {}
class LineSegment implements DrawableSegment {}
class PercentageSegment implements DrawableSegment {}
class Barchart<T extends DrawableSegment> {
List<DrawableSegment> drawableSegList = new ArrayList<>();
public static void main(String[] args) throws IOException {
Barchart main = new Barchart();
main.add(new LineSegment());
System.out.println(main.getListSize());
main.add(new LineSegment());
System.out.println(main.getListSize());
main.add(new PercentageSegment());
System.out.println(main.getListSize());
}
public void add(T t){
if(!drawableSegList.isEmpty() && drawableSegList.get(0).getClass() != t.getClass()){
System.out.println("First element :"+ drawableSegList.get(0).getClass()+" Does not match next Element "+t.getClass());
throw new RuntimeException();
}
drawableSegList.add(t);
}
public int getListSize(){
return this.drawableSegList.size();
}
}