Skip to main content

arraylist java compiling errors



ok i try to play with arraylist in java awhile to experiment some thing that related my project..so i come up with a simple code like this





having 3 file...DataStruc.java , DataStrucHand.java , testcase1.java







DataStruc.java





public class DataStruc {

private String testString;



public DataStruc(String s){

this.testString = s;

}



public String getTestString() {

return testString;

}



public void setTestString(String testString) {

this.testString = testString;

}



public String toString(){

return String.format("%s",testString);

}

}





DataStrucHand.java



import java.util.ArrayList;



public class DataStrucHand {

private ArrayList<DataStruc> ds;



public void addData(String ss){

ds.add(new DataStruc(ss));

}



public ArrayList<DataStruc> getData(){

return ds;

}

}





testcase1.java

import java.util.*;

public class testcase1 {

public static void main(String args []){

DataStrucHand dsh = new DataStrucHand();



String gdata = "test";



dsh.addData(gdata);





}

}







i tried to compile it and having this error







Exception in thread "main" java.lang.NullPointerException

at DataStrucHand.addData(DataStrucHand.java:7)

at testcase1.main(testcase1.java:8)







can i know what is wrong actually? i cant even add the data...i am trying to add the data and retrieve it back by creating another testcase2.java...but than i having problems in adding now to the arraylist...my purpose is to create a temp storage to keep a specific string that can be obtain by 1 program but runs with 2 different classes..


Comments

  1. You never assign anything to the ds field.

    DataStrucHand.java

    import java.util.ArrayList;

    public class DataStrucHand {
    private ArrayList<DataStruc> ds; //I am null because nothing is ever new'd up here...

    public void addData(String ss){
    ds.add(new DataStruc(ss));
    }

    public ArrayList<DataStruc> getData(){
    return ds;
    }
    }


    Try it with this line:

    private ArrayList<DataStruc> ds = new ArrayList<DataStruc>();


    Or, you can have a constructor that will new it up if you prefer that method:

    public DataStrucHand() {
    ds = new ArrayList<DataStruc>();
    }

    ReplyDelete
  2. You need to put an ArrayList<DataStruc> instance in ds.

    ReplyDelete
  3. You haven't instantiated the ArrayList. Write this:

    public class DataStrucHand {
    private ArrayList<DataStruc> ds = new ArrayList<DataStruc>();

    public void addData(String ss){
    ds.add(new DataStruc(ss));
    }

    ReplyDelete
  4. You've never initialized ds, so it is null when you call ds.add(new DataStruc(ss)); Add a constructor to DataStrucHand that initializes ds, such as ds = new ArrayList<DataStruc>();.

    ReplyDelete
  5. The problem is that your DataStrucHand class never initializes its private field ds, so when you try to call ds.add(...) it fails with NullPointerException.

    In fact, the way the class looks right now, there is no way ds can be anything else than null.

    Shortest way to fix this is to initialize ds properly:

    private final List<DataStruc> ds = new ArrayList<DataStruc>();


    This way each DataStrucHand instance is constructed with an ArrayList inside and ds is never null.

    ReplyDelete

Post a Comment

Popular posts from this blog

Slow Android emulator

I have a 2.67 GHz Celeron processor, 1.21 GB of RAM on a x86 Windows XP Professional machine. My understanding is that the Android emulator should start fairly quickly on such a machine, but for me it does not. I have followed all instructions in setting up the IDE, SDKs, JDKs and such and have had some success in staring the emulator quickly but is very particulary. How can I, if possible, fix this problem?

CCNA 1 Final Exam 2011 latest (hot hot hot)

  Hi! I have been posted content of ccna1 final exam (latest and only question.) I will post the answer and insert image on sunday. If you care, please subscribe your email an become a first person have full test content. Subcribe now  Some question  have not content because this question have images content. So that can you wait for me? SUNDAY 1. A user sees the command prompt: Router(config-if)# . What task can be performed at this mode? Reload the device. Perform basic tests. Configure individual interfaces. Configure individual terminal lines. 2. Refer to the exhibit. Host A attempts to establish a TCP/IP session with host C. During this attempt, a frame was captured with the source MAC address 0050.7320.D632 and the destination MAC address 0030.8517.44C4. The packet inside the captured frame has an IP source address 192.168.7.5, and the destination IP address is 192.168.219.24. At which point in the network was this packet captured? leaving host A leaving ATL leaving...