Tagged Questions

0
votes
4answers
60 views

Subclass check, is operator or enum check

Hi A couple of friends was discussing the use of inheritance and how to check if a subclass is of a specific type and we decided to post it here on Stack. The debate was about if y …
2
votes
7answers
136 views

Is it possible to avoid using type checking in this example?

Sorry for the poor title, can't think of a succinct way of putting this.. I'm thinking of having a list of objects that will all be of a specific interface. Each of these objects …
7
votes
9answers
725 views

Enforce strong type checking in C (type strictness for typedefs)

Is there a way to enforce explicit cast for typedefs of the same type? I've to deal with utf8 and sometimes I get confused with the indices for the character count and the byte cou …
1
vote
1answer
73 views

OCaml: Why does this code produce a type check error?

Here is my code: let avg l = List.fold_left ( +. ) 0. l /. float (List.length l);; let variability l = let xbar = avg l in let odp = (List.map (fun i -> ((float) i …
5
votes
7answers
245 views

Comparing expressions of type object

Okay, this is probably very simple but, I have the below "checks" (not at the same time) and the First ALWAYS evaluates to TRUE while the Second SEEMS to work. This actually happe …
1
vote
3answers
214 views

Is there a way to compile-time assert if a variable is a class, struct or a basic type in c++?

I am trying to implement a template class that would be able to tell me if a variable is a class,structure or a basic type. So far I've come with this: template< typename T &g …
8
votes
10answers
777 views

What is the best (idiomatic) way to check the type of a Python variable?

I need to know if a variable in Python is a string or a dict. Is there anything wrong with the following code? if type(x) == type(str()): do_something_with_a_string(x) elif t …
2
votes
5answers
370 views

Checking real variable type in polymorphism (C++)

Suppose we have a class A and class B and C inherit from it. Then we create an array of references to A's, and fill it with B's and C's. Now we decided that we want to eliminate …
3
votes
3answers
370 views

How do I detect that an object is a generic collection, and what types it contains?

I have a string serialization utility that takes a variable of (almost) any type and converts it into a string. Thus, for example, according to my convention, an integer value of …
4
votes
6answers
174 views

What is the best way to tell users of my library functions that passed variables are not of the correct type.

I'm currently in the creation of a javascript function library. Mainly for my own use, but you can never be sure if someone else ends up using it in their projects, I'm atleast cre …
0
votes
1answer
60 views

Where is the right place parametric type checking in dynamic languages?

Consider the following. (in pseudocode). Class { hello world public constructor(hello, world) { if (hello is not String) { throw E …
1
vote
7answers
360 views

Force PHP to error on non-declared variables? In objects?

Is there any way to force PHP to blow up (error, whatever) if I misspell a variable name? What about if I'm using an instance of a class and I spell the name of a variable wrong? …
5
votes
3answers
295 views

What is the easiest way to do ‘is’ in Java?

Many languages have a facility to check to see if an Object is of a certain type (including parent subclasses), implemented with 'is' and used like this: if(obj is MyType) Or sl …