is it possible?
Object obj=null;
obj.someMethod();
someMethod{/*some code here*/}
|
is it possible?
| ||||
|
feedback
|
|
You can call a static method on a null pointer. The pointer will naturally be completely ignored in a static method call, but it's still a case when something that (without looking at the class definition) seemingly should cause a NullPointerException runs just fine.
But just to make it clear - no, you can't call an instance method with a null pointer. Protecting the programmer against this is one of the really basic protections that set languages like Java apart from "lower level languages" such as C++. It enables the error to be reported at the calling end, instead of it causing an inexplicable segfault/whatnot inside the method itself. | |||||||||
feedback
|
|
No we can't. it will throw NullPointerException as long as the method is not static. If method is static it will run. Read this: null : Java Glossary | |||||||||||||
feedback
|
|
"obj" variable references to no instance on the heap. For that reason you'll get a nullpointerexception at runtime. Even your Java IDE (Eclipse, IDEA) will catch the problem and warns you about this. | |||
|
feedback
|
|
No, there is no way to call a method on a This works fine however (ideone.com link):
| ||||
|
feedback
|
|
you cant execute null.someMethod(); !!! | |||||||||||
feedback
|
|
This will always throw a | |||
|
feedback
|
|
This won't compile as Object doesn't have
the answer depends on whether someMethod is static or not. If it is static, the value is ignored and it doesn't matter if its null or not. e.g.
runs fine without an exception. | |||
|
feedback
|
|
A null object does not exist. In your example, you have a variable (a pointer) that can either store a reference to an instance or nothing. If it doesn't point to an instance - well, then we can't use it to call methods or access fields. wait, wait - this compiles and runs:
We can call static methods and access static fields in any variable (we just have to ignore compiler/IDE warnings!) But that is something different, a static method/variable is not called/accessed on the instance but on the class itself. | |||
|
feedback
|
NullPointerException. – Péter Török May 2 '11 at 8:53