celloman
Erfahrenes Mitglied
Hallo
Wie kann ich die dritte stelle von einem Array ansprechen.
Wie kann ich die dritte stelle von einem Array ansprechen.
Code:
/* Listing1510.java */
002
003 import java.util.*;
004
005 public class Listing1510
006 {
007 public static void main(String[] args)
008 {
009 //Konstruieren des Sets
010 List l = new ArrayList();
011 l.add("Kiwi");
012 l.add("Kirsche");
013 l.add("Ananas");
014 l.add("Zitrone");
015 l.add("Grapefruit");
016 l.add("Banane");
017 //Unsortierte Ausgabe
018 Iterator it = l.iterator();
019 while (it.hasNext()) {
020 System.out.println((String)it.next());
021 }
022 }
030 }