Tagged Questions

12
votes
17answers
5k 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 instanceo …
2
votes
6answers
319 views

Most specific subclass for a Java object?

I have two classes A and B, where B is subclass of A and A is not abstract. Therefore I can have objects that are instance of A and objects that are instance of B (and therefore of …
1
vote
4answers
118 views

Using instanceof with Java Enums

I have a situation where I'm receiving an enum from an external system, and for which I need to return an enum of our own. The two enums have the exact same literal values in them: …
1
vote
4answers
222 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 …
0
votes
6answers
137 views

In generic method <T> doSth(List<T> l), check whether T implements Comparable?

The title basically says it all: if I have a java method that is generic in T, can I find out anything about T? In particular, can I check whether T implements a certain interface …
0
votes
3answers
76 views

Issue with JavaScript object constructor where arguments are other objects

I'm writing some JavaScript with three classes, one for Roofs, one for Garages, and one for Houses. The house class takes two arguments to its constructor, a Roof and a Garage. Whe …
0
votes
3answers
88 views

Implementing isInstance in Javascript

I define how two functions can inherit from each other as follows: Function.prototype.inherit = function(parent){ function proto() {} proto.prototype = parent.prototype; this.pr …
1
vote
3answers
118 views

OCaml: Type Checking Objects

If I have an object, how can I determine its type? (Is there an OCaml equivalent to Java's instanceof operator?)
0
votes
5answers
254 views

how can I replace instanceof in this case?

I'm trying to compare compareCriteria. Simple ones like 'between' and 'inArray' or 'greaterThan'. I use polymorphism for these classes. One method they share from the compareCriter …
1
vote
4answers
192 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 …
1
vote
4answers
212 views

What is the best way to check if an object is an array or not in Javascript?

Say I have a function like so: function foo(bar) { if (bar > 1) { return [1,2,3]; } else { return 1; } } And say I call foo(1), how do I know it ret …
4
votes
3answers
650 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 //=& …
1
vote
4answers
155 views

Instanceof and Type-casting Techniques

I have a question about technique and implementation, rather than an actual problem to solve. Recently I created an abstract class, let's called it A, which defines the common beha …
1
vote
3answers
206 views

What is the VB equivalent of Java’s instanceof and isInstance()?

In the spirit of the c# question.. What is the equivalent statements to compare class types in VB.NET?
3
votes
3answers
1k views

Getting the class name of an instance in Python

Hi, 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 …

1 2 next
15 30 50 per page