Tagged Questions
The instanceof tag has no wiki summary.
92
votes
3answers
29k views
Getting the class name of an instance in Python
How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?
Was ...
46
votes
6answers
24k views
45
votes
19answers
25k views
The performance impact of using instanceof in Java
I am working on an application and one design approach involves extremely heavy use of the instanceof operator. While I know that OO design generally tries to avoid using instanceof, that is a ...
44
votes
9answers
1k views
Avoiding 'instanceof' in Java
I have the following (maybe common) problem and it absolutely puzzles me at the moment:
There are a couple of generated event objects which extends the abstract class Event and I want to divide them ...
37
votes
9answers
16k views
What is the difference between instanceof and Class.isAssignableFrom(…)?
Which of the following is better?
a instanceof B
or
B.class.isAssignableFrom(a.getClass())
The only difference that I know of is, when 'a' is null, the first returns false, while the second ...
26
votes
10answers
15k views
Any reason to prefer getClass() over instanceof when generating .equals()?
I'm using Eclipse to generate .equals() and .hashCode(), and there is an option labeled "Use 'instanceof' to compare types". The default is for this option to be unchecked and use .getClass() to ...
21
votes
5answers
6k views
Why does instanceof return false for some literals?
"foo" instanceof String //=> false
"foo" instanceof Object //=> false
true instanceof Boolean //=> false
true instanceof Object //=> false
false instanceof Boolean //=> false
false ...
18
votes
8answers
378 views
When is it acceptable to use instanceof?
I'm designing a game. In the game, various game objects extend different interfaces (and one abstract class) depending on what they need to be doing, and are passed to handlers which take care of ...
17
votes
4answers
4k views
Does “instanceof Void” always return false?
Can this method return true somehow?
public static <T> boolean isVoid(T t)
{
return t instanceof Void;
}
14
votes
2answers
244 views
Reason behind using 'instanceof function() {}'?
On Mozilla Developer Center, there is a page about the Function.prototype.bind function and provides a compatibility function for browsers which do not support this function.
However, when analyzing ...
13
votes
6answers
2k views
Is instanceof considered bad practice? If so, under what circumstances is instanceof still preferable?
Over the years, I've tried to avoid instanceof whenever possible. Using polymorphism or the visitor pattern where applicable. I suppose it simply eases maintenance in some situations... Are there any ...
12
votes
3answers
4k views
instanceof - incompatible conditional operand types
The following compiles fine:
Object o = new Object();
System.out.println(o instanceof Cloneable);
But this doesn't:
String s = new String();
System.out.println(s instanceof Cloneable);
A ...
11
votes
5answers
9k views
Java: Instanceof and Generics
Before I look through my generic data structure for a value's index, I'd like to see if it is even an instance of the type this has been parametrized to.
But Eclipse complains when I do this:
...
11
votes
6answers
8k views
Is there something like instanceOf(Class<?> c) in Java?
I want to check if an object o is an instance of the class c or of a subclass of c.
For instance, if p is of class Point I want x.instanceOf(Point.class) to be true and also x.instanceOf(Object.class) ...
9
votes
7answers
301 views
Is using Java's instanceOf compatible with the “program to an interface” design principle?
As you know the 'program to an interface' design principle broadly prefers supertypes instead of concrete types or implementations.
Is it consistent with the principle to use instanceof in a Java ...
9
votes
2answers
760 views
Is it possible to use instanceof when passing objects between Threads?
I've run into an issue where instanceof works, and then it doesn't. Going into details is difficult, but I think this might be the problem:
Reading this: ...
9
votes
5answers
3k views
Avoiding instanceof in Java
Having a chain of "instanceof" operations is considered a "code smell". The standard answer is "use polymorphism". How would I do it in this case?
There are a number of subclasses of a base class; ...
7
votes
5answers
150 views
Is This Use of the “instanceof” Operator Considered Bad Design?
In one of my projects, I have two "data transfer objects" RecordType1 and RecordType2 that inherit from an abstract class of RecordType.
I want both RecordType objects to be processed by the same ...
7
votes
10answers
301 views
Getting rid of `instanceof`
In a sprite based game I'm writing, each field in a 2D grid contains a stack of sprites. Mostly the top one counts.
In the rules module of the game, I have a lot of code like this:
public boolean ...
7
votes
7answers
2k views
switch instanceof?
I have a question of using switch case for instanceof object:
For example: my problem can be reproduced in Java:
if(this instanceof A)
doA();
else if(this instanceof B)
doB();
else if(this ...
7
votes
7answers
2k views
instanceof yields inconsistent results for detecting interfaces?
Is there anything tricky I should know about instanceof? I'm passing a list of objects through a few methods and testing whether these objects implement a particular interface using instanceof. In ...
6
votes
6answers
133 views
What is the 'instanceof' operator used for?
What is the instanceof operator used for? I've seen stuff like
if (source instanceof Button) {
//...
} else {
//...
}
But none of it made sense to me. I'm very new to Java. I've done my ...
6
votes
6answers
442 views
How does one use polymorphism instead of instanceof? (And why?)
If we take the code below:
Shape p1 = new Square();
Square c1;
if(p1 instanceof Square) {
c1 = (Square) p1;
}
What does it mean to prefer polymorphism to instanceof, and incidentaly, why is it ...
6
votes
3answers
352 views
Why can't a “Class” variable be passed to instanceof?
could anyone tell me why this code won't compile?
public boolean isOf(Class clazz, Object obj){
if(obj instanceof clazz){
return true;
}else{
return false;
...
6
votes
5answers
1k views
Avoiding instanceof when checking a message type
I have the following situation where a client class executes different behavior based on the type of message it receives. I'm wondering if there is a better way of doing this since I don't like the ...
5
votes
4answers
164 views
JavaScript inheritance and the constructor property
Consider the following code.
function a() {}
function b() {}
function c() {}
b.prototype = new a();
c.prototype = new b();
console.log((new a()).constructor); //a()
console.log((new ...
5
votes
3answers
96 views
Is it okay to use the instanceof operator to implement two parallel hierarchies of functions and arguments to those?
Is it bad practice to use the instanceof operator in the following context?
public interface IWriter {
public abstract void write(Dto dto);
}
public abstract class Dto {
private long id;
...
5
votes
2answers
193 views
IllegalAccessError when trying instanceof against AbstractDocument.UndoRedoDocumentEvent from javax.swing.text
In the source of javax.swing.text.DefaultCaret.Handler.insertUpdate(DocumentEvent) I found the following lines (starting at line 1685):
if (e instanceof AbstractDocument.UndoRedoDocumentEvent) {
...
5
votes
3answers
3k views
How to test if one java class extends another at runtime?
How to I test if a is a subclass of b?
Class<?> a = A.class;
Class<?> b = B.class;
4
votes
6answers
97 views
Why “t instanceof T” is not allowed where T is a type parameter and t is a variable?
Eclipse says that the instanceof operation is not allowed with Type Parameter due to generic type eraser.
I agree that at runtime, no type information stays. But consider the following generic ...
4
votes
2answers
135 views
Java Inheritance and avoiding constant use of instanceof
I have three classes, an abstract User and two specific: NormalUser which holds an ArrayList of one or more Address objects which can be different (domestic, international, custom etc.) and then the ...
4
votes
4answers
47 views
Writing a Java library to conditionally handle an input class w/o causing unconditional runtime dependency on that class
I have what seems like a tricky Java library task.
I need to write an adapter/helper class for working with JTables that has some additional functionality if the JTable is a JXTable. But I don't want ...
4
votes
4answers
164 views
Generics - Legal alternative for (elements instanceof List<? extends Comparable>)
I have this method which unique parameter (List elements) sets elements to a ListModel, but I need to make a validation to see if the generic type implements comparable and since such thing like:
if ...
4
votes
7answers
254 views
Doubts about the use of polymorphism, and also about how is polymorphism related to casting?
I give lessons on the fundamentals of the Java programming language, to students who study this subject in college.
Today one of them got me really confused with her question, so I told her to give ...
4
votes
1answer
706 views
JSF EL: instanceof reserved but not yet implemented?
I've found the instanceof operator in JSF EL, but it throws an exception when used. It's obviously reserved but not implemented? When will it (probably) be available, if not already in a newer version ...
4
votes
3answers
1k views
Java: instanceof Generic
Isn't there any way to find the class-type of a generic?
if (T instanceof String) {
// do something...
}
The above definitely does not compile.
4
votes
2answers
1k views
Checking if a class is java.lang.Enum
I'm trying to know if a class is an Enum, but I think I'm missing something:
if (test.MyEnum.class instanceof Enum<?>.class)
obj = resultWrapper.getEnum(i, test.MyEnum.class);
else
obj = ...
4
votes
6answers
438 views
How inefficient is passing Collections.unmodifiable* an instance which is already wrapped with Collections.unmodifiable*?
I have bits of piecework being done by different custom (source code unavailable) frameworks which hand back Map instances. Unfortunately, these frameworks are not consistent in their returning Map ...
4
votes
5answers
370 views
Checking if an annotation is of a specific type
I am using reflection to see if an annotation that is attached to a property of a class, is of a specific type. Current I am doing:
...
4
votes
2answers
234 views
How is Object[] cloneable
Object[] o = new Object[]{};
System.out.println(o instanceof Cloneable);
This gives true as o/p. I could not understand why?
4
votes
1answer
817 views
What's the difference between isPrototypeOf and intanceof in Javascript?
In some of my own older code, I use the following:
Object.prototype.instanceOf = function( iface )
{
return iface.prototype.isPrototypeOf( this );
};
Then I do (for example)
[].instanceOf( Array ...
4
votes
5answers
399 views
question on the working of instanceof
Long l1 = null;
Long l2 = Long.getLong("23");
Long l3 = Long.valueOf(23);
System.out.println(l1 instanceof Long); // returns false
System.out.println(l2 instanceof Long); // returns false
...
3
votes
2answers
47 views
JavaScript instanceof: can't define what instance of function's argument is
I'm still learning JavaScript,reading books,utilizing FireBug,experimenting.
I'm amazed and stuck on thing below.
Have function declaration:
var t = function (args){
...
}
...
3
votes
1answer
48 views
Instanceof equivalent for Object.create and prototype chains
Consider such an object with a prototype chain:
var A = {};
var B = Object.create(A);
var C = Object.create(B);
How to check in runtime if C has A in its prototype chain?
instanceof doesn't fit as ...
3
votes
7answers
89 views
Chain of “instanceof's” to assemble an object
I'm facing the following code:
public class BaseGroup {
private Group1 group1;
private Group2 group2;
private Group3 group3;
public void setGroup (IGroup group) {
if(group ...
3
votes
2answers
144 views
How to perform runtime type checking in Dart?
Dart specification states:
Reified type information reflects the types of objects at runtime and may always be queried by dynamic typechecking constructs (the
analogs of instanceOf, casts, ...
3
votes
7answers
121 views
How to find type without using instanceof?
I have a List of interface type Criteria within my class Query.
List<Criteria> criteria = new ArrayList<Criteria>();
I have several concrete implementations of Criteria. Within Query, I ...
3
votes
3answers
134 views
What is the best way to verify multiple instanceof's with primitive types (eg: switch case)?
I've searched for answers here and every thread I found were in fact "fragments" of what I seek.
I'd like to find a better way than this :
~ EDIT: OOPS ! I meant to use primitive Wrapper classes in ...
3
votes
4answers
589 views
How can I reduce the Cyclomatic Complexity of this?
I have a method that receives an Object and does something based on what type of object it detects:
receive(Object object) {
if (object intanceof ObjectTypeA) {
doSomethingA();
}
...
3
votes
6answers
167 views
javascript: what's the whole point of new String(“x”)
I was wondering what's the whole point of doing new String("something") ?
Rephrasing the question, is it true that i can assume no one will ever do new String("something") so whenever i want to check ...