如果将多个元素添加到数组列表中,如何抛出运行时异常?

时间:2019-04-22 12:57:07

标签: java arraylist runtimeexception

因此,我试图编写一个将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 

                                                       }


                                         }

1 个答案:

答案 0 :(得分:0)

用户数组而不是ArrayList。数组具有固定的大小,因此您可以在实例化时限制数组的大小。如果您尝试添加更多元素来修复大小数组,则会抛出IndexOutOfBoundsException,这实际上是RuntimeException