how do i print the element “e” in arraylist “list” out?
ArrayList<Dog> list = new ArrayList<Dog>();
Dog e = new Dog();
list.add(e);
System.out.println(list);
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do you want to print the entire list or you want to iterate through each element of the list? Either way to print anything meaningful your
Dogclass need to override thetoString()method (as mentioned in other answers) from theObjectclass to return a valid result.The output of this code is: