print arraylist element?

前端 未结 7 392
日久生厌
日久生厌 2021-01-11 13:59

how do i print the element \"e\" in arraylist \"list\" out?

 ArrayList list = new ArrayList();
 Dog e = new Dog();
 list.add(e);
 Syste         


        
相关标签:
7条回答
  • 2021-01-11 14:11

    First make sure that Dog class implements the method public String toString() then use

    System.out.println(list.get(index))
    

    where index is the position inside the list. Of course since you provide your implementation you can decide how dog prints itself.

    0 讨论(0)
  • 2021-01-11 14:20

    If you want to print an arraylist with integer numbers, as an example you can use below code.

    class Test{
        public static void main(String[] args){
            ArrayList<Integer> arraylist = new ArrayList<Integer>();
    
            for(int i=0; i<=10; i++){
                arraylist .add(i);
            }
           for (Integer n : arraylist ){
                System.out.println(n);
           }
       }
    }
    

    The output is above code:

    0
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    
    0 讨论(0)
  • 2021-01-11 14:21

    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 Dog class need to override the toString() method (as mentioned in other answers) from the Object class to return a valid result.

    public class Print {
        public static void main(final String[] args) {
            List<Dog> list = new ArrayList<Dog>();
            Dog e = new Dog("Tommy");
            list.add(e);
            list.add(new Dog("tiger"));
            System.out.println(list);
            for(Dog d:list) {
                System.out.println(d);
                // prints [Tommy, tiger]
            }
        }
    
        private static class Dog {
            private final String name;
            public Dog(final String name) {
                this.name = name;
            }
    
            @Override
            public String toString() {
                return name;
            }
        }
    }
    

    The output of this code is:

    [Tommy, tiger]  
    Tommy  
    tiger
    
    0 讨论(0)
  • 2021-01-11 14:34

    Here is an updated solution for Java8, using lambdas and streams:

    System.out.println(list.stream()
                           .map(Object::toString)
                           .collect(Collectors.joining("\n")));
    

    Or, without joining the list into one large string:

    list.stream().forEach(System.out::println);
    
    0 讨论(0)
  • 2021-01-11 14:34

    You should override toString() method in your Dog class. which will be called when you use this object in sysout.

    0 讨论(0)
  • 2021-01-11 14:38

    Your code requires that the Dog class has overridden the toString() method so that it knows how to print itself out. Otherwise, your code looks correct.

    0 讨论(0)
提交回复
热议问题