Respuesta :
Answer:
//importing package java.util.ArrayList to use ArrayList in the program
import java.util.ArrayList;
import java.util.Date;
public class test_array_list {
// Main method
public static void main(String[] args) {
// Create an array list of objects
ArrayList<Object> s = new ArrayList<Object>();
s.add(new Loan());
s.add(new Date());
s.add(new String("String class"));
s.add(new Circle());
// Display all the elements in the list by
// invoking the object’s to String() method
for (int element = 0; element < o.size(); element++) {
System.out.println((s.get(element)).toString());
}
}
}
Explanation:
The Above code has proper comments to which is self explanatory.
- When the //importing package java. util.ArrayList to use ArrayList in the program.
- Then the import java. util.ArrayList;
- Also, they import java. util.Date;
When the public class test_array_list {
- Which are the // Main method
- So, the public static void main(String[] args) {
- It // Create an array list of objects
- Formula are: ArrayList<Object> s = new ArrayList<Object>();
- s.add(new Loan());
- s.add(new Date());
- s.add(new String("String class"));
- s.add(new Circle());
- Then next will be // Display all the elements in the list by
- // invoking the object’s to String() method
- Then, for (int element = 0; element < o.size(); element++) {
- The System.out.println((s.get(element)).toString());
}
}
}
The code is mention
Learn more about:
https://brainly.com/question/24532559