In Java, all classes (built-in or user-defined) are (implicitly) subclasses of Object . Using an array of Object in the List class allows any kind of Object (an instance of any class) to be stored in the list. However, primitive types (int, char, etc) cannot be stored in the list.
Read moreWhat is a built-in class?
A built-in class is a class whose instances have restricted capabilities or special representations . Attempting to use defclass to define subclasses of a built-in class signals an error of type error. Calling make-instance to create an instance of a built-in class signals an error of type error.
Read moreWhat is inbuilt final classes in Java?
Java has several system classes in JDK which are final, some examples of final classes are String, Integer, Double, and other wrapper classes . You can also use a final keyword to make your code better whenever it is required.
Read moreIs system inbuilt class in Java?
The System class in Java comes with various inbuilt class fields and methods .
Read more