因此,我试图编写一个将Element添加到另一个类的arraylist中的函数。现在我的问题是,如果在此函数中添加了多个元素,我想抛出RuntimeException
。我如何做到这一点?
public class Specialcars extends Car {
public void addtire(Tire tire) {
//adds element to arraylist outgoingtires in class Car
outgoingtires.add(tire)
//now here i want to throw a Runtime Exception if more
//than one tires are added
}
}
答案 0 :(得分:0)
用户数组而不是ArrayList
。数组具有固定的大小,因此您可以在实例化时限制数组的大小。如果您尝试添加更多元素来修复大小数组,则会抛出IndexOutOfBoundsException
,这实际上是RuntimeException
。