Java Arraylist bestimmtes element ausgeben code example
Example: Java Arraylist bestimmtes element ausgeben
//prints the 4. value of the list:
System.out.println(list.get(3));
//prints the 4. value of the list:
System.out.println(list.get(3));