The Artima Developer Community
Sponsored Link

Java Answers Forum
what about netbeans?

1 reply on 1 page. Most recent reply: Jan 27, 2004 5:02 AM by mausam

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
giuseppe

Posts: 5
Nickname: solgius
Registered: Jan, 2004

what about netbeans? Posted: Jan 27, 2004 4:31 AM
Reply to this message Reply
Advertisement
hi everybody,
i need your opinion about NetBeans, as i've started using java from a very short time.
I found some problems when i tried to edit some files with the gui editing window (even only a label...)and executing ther program i have many nullpointer exceptions.
i can't understand the meaning, does anybody know why?
could it be a buck of netBeans???

if you have any advice i'll be glad to accept your opinion!
thanks a lot.
giuseppe


mausam

Posts: 243
Nickname: mausam
Registered: Sep, 2003

Re: what about netbeans? Posted: Jan 27, 2004 5:02 AM
Reply to this message Reply

NullPointerException ::

Thrown when an application attempts to use null in a case where an object is required. These include:

Calling the instance method of a null object.

Accessing or modifying the field of a null object.

Taking the length of null as if it were an array.

Accessing or modifying the slots of null as if it were an array.

Throwing null as if it were a Throwable value.

Applications should throw instances of this class to indicate other illegal uses of the null object.


You may be performing some operations on nulll object.

How can one say like this.

Try to cornet exact error (if possible)

Flat View: This topic has 1 reply on 1 page
Topic: Make a link between C programming and Java Application Previous Topic   Next Topic Topic: Java's Socket Programming help

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use