Possible Duplicate:
C++: What's the difference between function(myVar) and (function)myVar ?

I have seen and used both variants of these typecasts:

int(floatvar)

(int)floatvar

Is there any difference between the two? Are there any preferences about when to use which?

link|improve this question

I removed the C tag, as this is a C++ only question. The first variant isn't relevant in C, unless you want to call a function named "int" with parameter "floatvar"? – onemasse Dec 21 '10 at 9:58
feedback

closed as exact duplicate by Charles Bailey, Loki Astari, Antal S-Z, cdhowie, dmckee Dec 22 '10 at 1:39

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 9 down vote accepted

There is no difference between them. (int)floatvar is C way of doing the cast where as int(floatvar) is the C++ way (Although it is better to be explicit and use static_cast<>).

link|improve this answer
1  
It may also be interesting to readers to note why it was introduced. – Loki Astari Dec 21 '10 at 10:03
feedback

No, it's the same thing.

Anyway, for C++ cast static_cast is preferable.

link|improve this answer
feedback

The notation is a general one for any type, and the fact you can do it with int means it will work in templates.

template < typename T, typename U >
T makeTFromU( U u )
{
   return T( u );
}

Ok, that is a very simple case to show a point, but it works even when T is int and U is a type that can be converted to int.

An example in the standard library would be vector. If you use this constructor it constructs one element from the parameter and the others by copy-constructor from the first.

std::vector< int > v( 20, x );

thus it will probably internally call int(x) to create the first one to then copy into the 20 elements.

link|improve this answer
feedback

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