vote up 2 vote down star
1

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)

flag

57% accept rate
2  
Is this an interview question? – finnw Aug 27 at 14:25
is it really possible? – Paulo Guedes Aug 27 at 14:29

8 Answers

vote up 2 vote down check

Everything extends Object, so you will always get true here (unless obj is null).

link|flag
vote up 1 vote down

Every object descends from 'Object'. Your statement will always be true.

link|flag
1  
This is incorrect - It will return false if obj is null. – Adamski Aug 27 at 14:49
That is part of the question – Crimson Aug 28 at 8:53
vote up 9 vote down

This will never return false if obj is non-null

link|flag
vote up 0 vote down

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.

link|flag
vote up 20 vote down

Is this a trick question?

Object obj = new Object() {{ System.out.println(false); System.exit(0); }};
System.out.println(obj instanceof Object);
link|flag
a genius answer – oxbow_lakes Aug 27 at 14:35
that's famous – ipingu Aug 27 at 14:53
Pardon my ignorance, what does the double-brace signify? – Everyone Aug 27 at 15:43
1  
The double brace idiom. The outer brace is the syntax for an anonymous inner class (in this case not defining any methods). The inner brace is an instance initialiser (becomes part of the constructor). – Tom Hawtin - tackline Aug 27 at 16:02
good one! :-) – Ajay Aug 28 at 4:10
show 2 more comments
vote up 0 vote down

The only way to make it false is not to give it an object, give it a null reference

Discussed here

link|flag
"What should be obj so that the answer is false (Any other option other than null)" – ipingu Aug 27 at 14:52
vote up 0 vote down

Obviously if Object refers to java.lang.Object (as defined by the boot classloader) this is not possible as every class in the process must descend from java.lang.Object

However you can define something else called Object in an inner scope, hiding java.lang.Object.

Here's an example where the name Object refers to a type parameter and a local class, at different points within the same method:

public class MySillyClass<Object> {
    public static void main(String[] args) {
    	new MySillyClass<Integer>().doWeirdStuff();
    }

    public void doWeirdStuff() {
    	Object value = (Object) "42"; class Object<E> {}
    	System.out.println(value instanceof Object);
    }
}

This is a slight cheat because the declaration of value is not a single statement but a statement followed by a local class definition.

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.

link|flag
vote up 3 vote down

This will print false:

public final class Foo {
    static private final class Object {
    }

    static public void main(String[] args)
    {
        java.lang.Object o = new java.lang.Object();
        System.out.println(o instanceof Object);
    }
}

It's not quite what you asked for, but the best I could think of...

link|flag

Your Answer

Get an OpenID
or

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