Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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

share|improve this question
3  
Can you also include the exception? – D-Bar Oct 12 '11 at 11:11
2  
At what line are you getting the NPE? – John B Oct 12 '11 at 11:12
2  
I don't see anything in the above code that would be throwing an NPE. I think you are missing something in your post. – John B Oct 12 '11 at 11:13
3  
System.out.println(se.getId()); isn't in the code you pasted in your answer. – skyuzo Oct 12 '11 at 11:16
3  
I love it when time fixes bugs :D – Luchian Grigore Oct 12 '11 at 11:21
show 6 more comments

closed as too localized by Pratik, bharath, Andy Thomas-Cramer, richq, Graviton Oct 12 '11 at 15:35

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

Ok, everyone is being a bit harsh here, and it's quite obvious that you are new to Java. We all know how tough that can be, so here's some genuine help;

In your code example, you are missing an import and if you really mean for Test to be an inner class, it's declared in the wrong place. Apart from that and a little refactoring to make it more readable, it does what you appear to intend it to.

import java.util.ArrayList;

public class Driver {
    public static void main(String[] args) {
        ArrayList<Test> tests = new ArrayList<Test>();
        Test test = new Test("1", "A", 5);
        tests.add(test);

        for (Test testEntry : tests) {
            System.out.println(testEntry.getId());
        }
    }
}

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;
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.