I'm running into the strangest error in this program, which is confirmed when debugging it. I have the following code (boiled down to highlight the problem, of course):

BHFrame.java

public class BHFrame
{
  private boolean uSS;
  private StateSaver stateSaver;

  public BHFrame(boolean useInternalStateSaver)
  {
    //Init code

    uSS = useInternalStateSaver;

    //More init code
    System.out.println(uSS);
    if (uSS)
    {System.out.println("Entered 1");
      stateSaver = new StateSaver(title, false);
      stateSaver.addSaveable(getThis());
    }

    //More init code
    System.out.println(uSS);
    if (uSS)
    {System.out.println("Entered 2");
      try
      {
        stateSaver.loadState();
        stateSaver.putState(getThis());
      }
      catch (IOException ex)
      {
        alertUserOfException(ex);
      }
    }
  }
}

GUI.java

public class GUI extends BHFrame
{
  public GUI(boolean useInternalStateSaver)
  {
    super(useInternalStateSaver);
  }
}

Main.java

public class Main
{
  public static void main(String[] args)
  {
    GUI gui = new GUI(false);
  }
}

Output

false
false
Entered 2
Exception in thread "main" java.lang.NullPointerException
    at bht.tools.comps.BHFrame.<init>(BHFrame.java:26)
    at bhms.GUI.<init>(GUI.java:5)
    at bhms.Main.main(Main.java:5)

The class BHFrame is extended and run from a child class that calls this constructor, but that really shouldn't affect this behavior. The problem is that, when false is passed to the constructor as useInternalStateSaver, the first if (uSS) is skipped, but the second is entered. Upon debugging, I found that uSS is false throughout runtime, including on the line of the second if statement, here. Why would Java enter an if statement when the condition returns false? Before you ask, I did delete the .class files and recompile it just in case there was some residual code messing with it, but I got the same result. And rest assured, all the references to the uSS variable are displayed here.

Solution


As it turns out, this appears to be a bug in NetBeans 7.1 Build 201109252201, wherein the IDE doesn't properly insert new code into the compiled .class files. The problem was fixed by compiling the files externally. A bug report has been submitted.

link|improve this question

70% accept rate
7  
if condition won't make wrong decisions. your variable uSS must become true in your //More init code line. – Shivan Raptor Nov 3 '11 at 3:21
2  
The code you're debugging and the code you posted are different (and the code you posted doesn't compile because of bits you've deleted) - so it's possible that the issue is due to that. Everyone is telling you're wrong, because there is no way the code you've shown us can do what you're saying it does. But maybe the code you're actually running can do that. – Tim Nov 3 '11 at 3:38
1  
What if you leave uSS unused and add a another private boolean and use that - what happens? And, if Java as optimizations, try turning them off if they're on? And what happens when the code is run outside of the debugger and outside of Netbeans? – Zabba Nov 3 '11 at 4:02
1  
Your example isn't self contained. The issue is that none of us can take the code, compile it, and reproduce the problem. I understand why you can't do that, but it also means that we can't actually help you. Your code looks fine, but it's incomplete (so we keep assuming the issue is in the code that we can't see) and it isn't standalone (so we can't see the issue for ourselves). Your best bet it to keep reducing it down until you get a piece of code that exhibits the issue, and only contains methods that you can post. Anything else is likely to keep going round in the same circles. – Tim Nov 3 '11 at 4:06
1  
This may be stupid but try stable version of Netbeans. SInce none of us can see the problem, we can only make assumption for you to try. – gigadot Nov 3 '11 at 4:09
show 22 more comments
feedback

4 Answers

up vote 2 down vote accepted

It appears that one of my guesses helped solve the problem, namely "What happens when the code is run outside of the debugger and outside of Netbeans?". Lucky guess! :)

link|improve this answer
Thank you for providing the most constructive comments. – Supuhstar Nov 3 '11 at 4:19
You are most welcome. – Zabba Nov 3 '11 at 4:19
2  
so it is the problem with Netbeans 7.1 beta? Sorry for asking but I cannot seem to determine the exact answer from any comments. – gigadot Nov 3 '11 at 4:22
@gigadot indeed. See the "Solution" section of my Question. – Supuhstar Nov 6 '11 at 17:50
feedback

Whatever's throwing that exception is probably not in your posted code.

It's not being caught by your catch statement, which only catches IOException.

It's a NullPointerException and can occur anywhere.

You have shown no indication that the code inside your if block is actually executing. In your screenshot, there is absolutely know way of knowing if your if block is entered or not. There are no logging statements.

Add debugging messages at various points to see exactly what is happening. Or, you know, look at line 26 (wayyyyy before your posted code) to see why you're getting a NullPointerException.

link|improve this answer
but it shouldn't have entered the if statement in the first place. Since "Enter 2" text is printed, it means the block is executed. – gigadot Nov 3 '11 at 3:39
edit posts more code to prove that uSS is not changed – Supuhstar Nov 3 '11 at 3:50
1  
+1 just for pointing out that the screenshot proves the code doesn't match the error output – Tim Bender Nov 3 '11 at 3:50
Another edit adds a screenshot with the output after debugging to the next line from the first screenshot – Supuhstar Nov 3 '11 at 4:03
feedback

This is just a guess, because I can't see the code you are mentioning, but I reckon you have defined a local variable uSS in the second //More init code segment.

Once you define a local variable named the same as an instance variable, it 'hides' the instance variable. Better to qualify all instance variables with this.

So, try qualifying all above accesses of uSS with this. ... (this.uSS)

Even if this isn't the issue, it might be better to post the full code anyway.

HTH

link|improve this answer
1  
Also, it would be good to mark the instance variable as final. It seems like it ought to be. Again, this would provide clarity if not anything else – amir75 Nov 3 '11 at 3:35
see edit; there is a screenshot showing that what I claim is really what is happening. I am no novice programmer; I know when I make variables what they do (that's why the class variable uSS isn't called useInternalStateSaver: to guarantee I'm referencing the right variable) – Supuhstar Nov 3 '11 at 3:36
Also, I am hesitant to post the full code, as it is not only copyrighted, but also very extensive. I will if I get enough demand, but I guarantee you that this is all you need to see. – Supuhstar Nov 3 '11 at 3:37
1  
p.s. I just upvoted your question, because clearly you're trying hard to engage with your [doubtful] audience. I see you found the solution too. Nice one – amir75 Nov 3 '11 at 4:25
1  
it came to nothing. As I mentioned before, I am no novice programmer, and uSS was never changed after it was first initialized, and I was referencing the same variable each time. However, it was not, as most respondents assumed, bad coding, but rather a bug in the IDE's debugger. – Supuhstar Nov 3 '11 at 4:27
show 5 more comments
feedback

I've seen crazy stuff like this when there is bad RAM on the machine. You might want to run memtest86.

You might also consider deleting all of your project class files, and then doing a build. Maybe you changed Main.java, but it was never recompiled. I hate that when that happens.

link|improve this answer
I states int he question that I deleted all my .class files, and why would bad RAM affect this one boolean value, but leave the rest of the 4294967288 bytes perfectly fine? And even if it is the case, wouldn't that mean that it would run fine the next time, as uSS will be stored in a different address? – Supuhstar Nov 3 '11 at 3:34
If you don't think its the RAM, then what other explanation do you have for this apparent non-deterministic behavior? I was responsible for a project that saw 15,000 JVMs deployed across the country. There were machines that we would deploy to where the JVM would not behave correctly, where other software appeared to. After replacing the RAM on these machines, the problems went away. Memtest86 is free so there is no cost in trying it. The only other option is that you're doing something wrong, and you're not aware of what that is. – Bill Nov 4 '11 at 0:32
please don't post such comments without reading the full question (which includes the reason) and accepted answer – Supuhstar Nov 6 '11 at 17:47
Yeah, I saw the answer up there after responding. I didn't know that it could be added like that. Wasn't sure if I should have deleted my comment or not. i.e. don't know the site's etiquette. – Bill Nov 7 '11 at 1:42
1  
Thanks for the feedback, and sorry I missed that. – Bill Nov 8 '11 at 0:30
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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