Why do I have a NullPointerException?

Java: NullPointerException?

  • Here's the code I have and it is giving a very stupid error! any idea why? public class Main { public Main() { allStudents = new Stu[1]; ...show more

  • Answer:

    We have to allocate the memory individual elements of the array. If you give that no more errors will not be occurred there. And please define the students class outside of the Main class. Because this is not better of the good programmers.

ZGVZWGAVNU7KZALKLQDWDPPNNQ at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

You declare the array, but don't put any objects in it allStudents[0]= new Stu(); //right before the spot you got the null pointer For that matter, do you really want an array? A Vector might be a better choice.

Greg M

I think the variables in a class are default to private, so to change them requires a method in the class.

Tasm

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.