Tagged Questions
The typeof tag has no wiki summary.
28
votes
4answers
796 views
What is the type of lambda when deduced with “auto” in C++11?
I had a perception that, type of a lambda is a function pointer. When I performed following test, I found it to be wrong (demo).
#define LAMBDA [] (int i) -> long { return 0; }
int main ()
{
...
19
votes
13answers
13k views
testing if javascript function exists
I need to test whether the value of a form's onsubmit is a function. The format is typically onsubmit="return valid();". Is there a way to tell if this is a function, and if it's callable? Using ...
15
votes
5answers
432 views
What's the reason to use === instead of == with typeof in Javascript?
Throughout many third-party libraries and best practices blogs/recommendations, etc... it is common to see syntax like this:
typeof x === 'object' (instead of typeof x == 'object')
typeof y === ...
13
votes
8answers
16k views
Print variable type in C++
Is it possible in standard C++ to print a variable type. I think this is being addressed in C++0x but not sure it already exists.
I would like something like this:
int a = 12;
cout << ...
10
votes
3answers
2k views
Get type name without full namespace in C#
i have the following code:
return "[Inserted new " + typeof(T).ToString() + "]";
but
typeof(T).ToString()
return the full name including namespace
is there anyway to get just the class name ...
9
votes
3answers
107 views
Does a matter whether a value is primitive or boxed
One can use typeof to determine whether a value is primitive or boxed.
Consider:
typeof "foo"; // "string"
typeof new String("foo"); // "object"
In combination with Object.prototype.toString we ...
8
votes
4answers
109 views
Why doesn't C# allow a typeof as a default parameter?
class MyClass
{
public void MyMethod(Type targetType = typeof(MyClass))
{
}
}
Isn't typeof(MyClass) a compile-time constant?
8
votes
1answer
261 views
C++0x decltype and the scope resolution operator
With a class such as Foo:
struct Foo { static const int i = 9; };
I find that GCC 4.5 will reject the following
Foo f;
int x = decltype(f)::i;
It will work if I use an intermediate typedef, such ...
7
votes
6answers
842 views
typeof for RegExp
Is there anyway to detect if a JavaScript object is a regex?
For example, I would like to do something like this:
var t = /^foo(bar)?$/i;
alert(typeof t); //I want this to return "regexp"
Is this ...
6
votes
4answers
210 views
typeof(T) vs <T>
In .NET there seem to be two ways to pass a type to a method or class. The first is through generics, in which we pass a type as a special parameter.
Such as:
var list = new List<MyClass>();
...
6
votes
1answer
178 views
Is it worth saving the result of the typeof() call for multiple uses?
If I am to use the result of the C# typeof call on the same type, is it worth saving the value, or just call typeof() multiple times. To me, multiple typeof's are preferable as it can more concise, ...
6
votes
7answers
8k views
How to check if two objects are of the same type in Actionscript?
I want to do this in Actionscript:
typeof(control1) != typeof(control2)
to test if two objects are of the same type. This would work just fine in C#, but in Actionscript it doesnt. In fact it ...
5
votes
3answers
102 views
“is” - operator for Type
I use the "is" operator to find a certain class:
for(int i=0; i<screens.Count; i++){
if(screen is ScreenBase){
//do something...
}
}
This works fine especially as it finds any class that ...
5
votes
4answers
245 views
Better way to get type of a Javascript variable?
Is there a better way to get the type of a variable in JS than typeof? It works fine when you do:
> typeof 1
"number"
> typeof "hello"
"string"
But it's useless when you try:
> typeof ...
5
votes
6answers
501 views
Why JavaScript says that a number is not a number?
I have a piece of JavaScript code which is expected to set an integer value to a variable.
Something is broken, so when I try to do alert(A);, it returns NaN. isNaN(A); returns true. But if I ...
5
votes
3answers
2k views
C++ typeof operator
Is C++ typeof operator standard? de facto standard?
which compilers do not provided it (besides Microsoft C++)?
5
votes
2answers
357 views
How can I get the name of function inside a JavaScript function?
How is it possible to learn the name of function I am in?
The below code alerts 'Object'. But I need to know how to alert "Outer."
function Outer(){
alert(typeof this);
}
5
votes
4answers
279 views
C# Getting the Type of a Public Variable based on an Enum value
I have a class that parses in data from a comma delimited text file. I have an enum for the fields to help me parse data in easier. The class that parses all the records in holds public variables for ...
4
votes
2answers
77 views
typeof() to check for Numeric values
what is the easiest way to check if a typeof() is mathematically usable(numeric).
do i need to use the TryParse method or check it by this:
if (!(DC.DataType == typeof(int) || DC.DataType == ...
4
votes
2answers
108 views
typeof gives exception 'Type expected` for unconstructed nested generic type
Normally getting an unconstructed generic type is quite easy, using typeof:
Type genericType = typeof( Func<> );
I would expect the following to work as well, but it gives a compiler error ...
4
votes
5answers
402 views
Absence of typeof operator in C++03?
I'm just wondering how boost have implemented BOOST_TYPEOF (in C++03) which seems to be a very useful tool. Anyone has any idea?
Also, I'm thinking C++03 itself could have provided typeof operator, ...
4
votes
4answers
6k views
typeid and typeof in C++
I just wonder what's the difference between typeid and typeof in C++?
typeid is defined in standard C++ Library Header File typeinfo.
typeof is defined in the GCC extension for C or in C++ Boost ...
4
votes
3answers
3k views
LINQ: From a list of type T, retrieve only objects of a certain subclass S
Given a simple inheritance hierarchy:
Person -> Student, Teacher, Staff
Say I have a list of Persons, L.
In that list are some Students, Teachers, and Staff.
Using LINQ and C#, is there a way I ...
4
votes
5answers
15k views
How to determine if Native JavaScript Object has a Property/Method?
I thought this would be as easy as:
if(typeof(Array.push) == 'undefined'){
//not defined, prototype a version of the push method
// Firefox never gets here, but IE/Safari/Chrome/etc. do, even ...
3
votes
2answers
110 views
Compare types in Javascript
I saw in Crockford's Book Javascript: The Good Parts that he does typeof comparison like this:
return typeof a < typeof b ? -1 : 1;
I made my own tests and I think this is the "ordering" of the ...
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
2answers
112 views
Does the typeof() operator in C# allocate a new Type object on the heap, or return an existing one?
Should be pretty self-explanatory, but this is in the context of real-time XNA code where I want to avoid allocations in order to avoid triggering GC. So I'm wondering if the managed Type objects ...
3
votes
2answers
86 views
typeof usage for undefined variables
what is the best usage for the "typeof" JavaScript function?
if (typeof (myvar) == 'undefined') {
//or
if (typeof (myvar) == undefined) {
//or
if (typeof myvar == 'undefined') {
//or
if (typeof ...
3
votes
1answer
140 views
how to tell if a javascript variable is a function
I need to loop over the properties of a javascript object. How can I tell if a property is a function or just a value?
var model =
{
propertyA: 123,
propertyB: function () { return 456; }
};
...
3
votes
6answers
168 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 ...
3
votes
3answers
68 views
Can this type checks with “object” be improved?
if (typeof a !== "object" && typeof b !== "object") {
return a == b;
}
... // check pairwise equality of object a & b using `for in`
Is it the same as
if (typeof a !== "object") {
...
3
votes
3answers
712 views
Pure ANSI-C: make generic array
Is it possible to replicate an generic array in pure ANSI-C?
I have this struct which holds an array (for floats at the moment) and some variables like size and capacity for mutation in the array.
...
3
votes
5answers
139 views
Is there a reason to do a type comparison this way?
I'm used to seeing old code like
if (true)
{
...
}
where it's intuitively clear that someone was being either lazy or overly cautious when making a change. I ran across this snippet today, and ...
3
votes
1answer
108 views
When iterating over values, why does typeof(value) return “string” when value is a number? Javascript
I'm using Google Chrome for this test:
Contrary to intuition, the first loop alerts "string" 3 times, while the second loop alerts "number" 3 times.
numarray = [1, 2, 3];
//for-each loop
for(num in ...
3
votes
3answers
273 views
C# Generics: Better Way to Match the Generic's Type to Another?
UPDATE: Didn't give a great example. Hopefully it's better now.
Is there a better way than this:
(typeof(TRepository) == typeof(UserClass))
Here's the use in writing:
public static ...
2
votes
4answers
84 views
How to efficiently check if variable is Array or Object (in NodeJS & V8)?
Is there any way to efficiently check if the variable is Object or Array, in NodeJS & V8?
I'm writing a Model for MongoDB and NodeJS, and to traverse the object tree I need to know if the object ...
2
votes
1answer
38 views
Why is typeof Object,String,Number… -a function in Javascript
Below is excerpt from Google Developer Console
typeof Object // type of Object is function (most confusing part).
"function" //Same fot all build-in types
Object.constructor
function ...
2
votes
2answers
51 views
Why my test “propType == typeof(ObservableCollection<string>)” fails?
I got a Type whose FullName is :
"System.Collections.ObjectModel.ObservableCollection`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]"
The thing is ...
2
votes
2answers
90 views
How to use StructureToPtr with F# Structure? Typeof trouble
I've got structure :
type OneDevice = {
mutable id : System.UInt16
mutable typeDev : byte
mutable portNum : byte
mutable Parity : ...
2
votes
1answer
212 views
JavaScript: Checking if an object field is undefined without checking if the object is undefined
My IVR app receives business data in the form of JS objects and arrays. For example, the name of one of our customers is accessed as follows:
customerData.customerList[customerIndex].customerName
...
2
votes
4answers
288 views
what the difference to get Type by using GetType() and typeof()
Which one is the preferred way to get the type?
2
votes
4answers
168 views
Portable way to “unpoint” a pointer typedef?
This is unfortunately defined in some external library: cannot touch!
// library.h
typedef struct {
long foo;
char *bar;
/* ... (long & complex stuff omitted) */
} ...
2
votes
4answers
334 views
2
votes
6answers
481 views
what is the return type of typeof?
I want to provide the type of an element as parameter to an initialization of an array of pointers to element of an unknown types
something like
void* init(type t)
void* array = ...
2
votes
6answers
494 views
Declare variables that depend on unknown type in template functions
Suppose I'm writing a template function foo that has type parameter T. It gets an object of type T that must have method bar(). And inside foo I want to create a vector of objects of type returned by ...
2
votes
4answers
213 views
How to check if an object is not an array?
So i have a function that needs to check if an argument is an object, but this fails because:
typeof [] // returns 'object'
This is a classic javascript gotcha, but i cant remember what to do to ...
2
votes
4answers
812 views
Can I set the type of a Javascript object?
I'm trying to use some of the more advanced OO features of Javascript, following Doug Crawford's "super constructor" pattern. However, I don't know how to set and get types from my objects using ...
2
votes
3answers
549 views
retrieving type returned by function using “typeof” operator in gcc
We can get the type returned by function in gcc using the typeof operator as follows:
typeof(container.begin()) i;
Is it possible to do something similar for functions taking some arguments, but ...
2
votes
8answers
19k views
How to typeof in C++
How to simulate C# typeof-command behavior in C++?
C# example:
public static PluginNodeList GetPlugins (Type type)
{
...
}
Call:
PluginManager.GetPlugins (typeof(IPlugin))
How to implement ...
2
votes
3answers
3k views
C#.NET - How Can I Get typeof() to Work With Inheritance?
I will start by explaining my scenario in code:
public class A { }
public class B : A { }
public class C : B { }
public class D { }
public class Test
{
private A a = new A ( ) ;
private B ...