class Test {
private String id;
private String name;
private int speed;
public Test(String id, String name, int speed) {
this.id = id;
this.name = name;
this.speed = speed;
}
public String getId() {
return id;
}
public String getName() {
return name;
}
public int getSpeed() {
return speed;
}
}
public class Driver {
public static void main(String[] args) {
ArrayList<Test> a = new ArrayList<Test>();
Test b = new Test("1", "A", 5);
a.add(b);
for (Test t : a) {
System.out.println(t.getId());
}
}
}
Edit: Error is on this: System.out.println(se.getId());
Can you guys explain why I'm getting this exception? Thanks
System.out.println(se.getId());isn't in the code you pasted in your answer. – skyuzo Oct 12 '11 at 11:16