所以可以说我有这个类调用 A 它有一个构造函数
A(String someA, int someB , String[] someC)
在另一个类中,我创建了一个将其作为类变量的 main
private static String[] someC = new String[4];
private static ArrayList<A> thisA;
然后我从 dat 文件中提取一些信息
someA= readFile.nextLine(); //some normal string such as bob Billy
someB= readFile.nextInt(); //some integer like 5
unitCode[0] = readFile.next(); //some code such as HITHERE34
unitCode[1] = readFile.next(); // all the 4 is the same style
unitCode[2] = readFile.next();
unitCode[3] = readFile.next();
thisA.add(new A(someA,someB,unitCode); // create object and store into array list
我尝试运行它,当我打印 unitCode 时它给了我一个 nullPointerException 错误,它返回给我一个地址。我该如何解决 ?