Consider
Object obj = ....;
System.out.println(obj instanceof Object);
What should obj be so that the answer is false (Any other option other than null)
|
1
|
Consider
What should obj be so that the answer is
|
||||||
|
|
|
Everything extends Object, so you will always get true here (unless obj is null). |
||
|
|
|
|
Every object descends from 'Object'. Your statement will always be true. |
||
|
|
This will never return false if |
||
|
|
|
|
None AFAIK. Did you get this as an interview question? By definition, it should return true if you can cast the variable into an Object, and all non-nulls should be convertible. Perhaps there is some trick with generics, but I doubt that. |
||
|
|
|
|
Is this a trick question?
|
||||||||||||
|
|
|
The only way to make it false is not to give it an object, give it a null reference Discussed here |
||
|
|
|
Obviously if However you can define something else called Here's an example where the name
This is a slight cheat because the declaration of I tested this in Eclipse 3.5.0, but I wouldn't be surprised if other compilers behave differently with a pathological example like this. |
|||
|
|
|
|
This will print false:
It's not quite what you asked for, but the best I could think of... |
||
|
|