vote up 4 vote down star

What is the difference between

(type)value

and

type(value)

in C++?

flag

2 Answers

vote up 12 vote down check

There is no difference.

Edit: Since somebody downvoted this, I'll quote the standard (ยง5.2.3).

A simple-type-specifier (7.1.5) followed by a parenthesized expression-list constructs a value of the specified type given the expression list. If the expression list is a single expression, the type conversion expression is equivalent (in definedness, and if defined in meaning) to the corresponding cast expression (5.4).

Since the question specified the difference between type(value) and (type)value, there is absolutely no difference.

If and only if you're dealing with a comma-separated list of values can there be a difference. In this case:

If the expression list specifies more than a single value, the type shall be a class with a suitably declared constructor (8.5, 12.1), and the expression T(x1, x2, ...) is equivalent in effect to the declaration T t(x1, x2, ...); for some invented temporary variable t, with the result being the value of t as an rvalue.

Edit: As Troubadour pointed out, there are a certain types for which the type(value) version simply won't compile. For example:

char *a = (char *)string;

will compile, but:

char *a = char *(string);

will not.

link|flag
6  
Um, no there is no difference. +1 – Johannes Schaub - litb Oct 30 at 21:37
1  
Well, maybe :) But what about untypedef'ed pointer types? – Troubadour Oct 30 at 21:44
1  
So nobody wants to answer my question about type being something like char*. The fact that it's a syntax error in the second case is okay is it? Oh, I guess that char* doesn't come under all types. You learn something new every day here. ;) – Troubadour Oct 30 at 21:58
1  
@litb: What a load of nonsense. char* is a perfectly good type. It could be used as T in template<class T>. I know you can use typedef to circumvent it, but then you would have known that if you'd read my earlier comment. – Troubadour Oct 30 at 22:06
3  
@Troubadour, i see now what you mean. But what i said was that it works for all types, not just for "builtins" like you said. The point is that char* and identity<char*>::type (for a template like boost::mpl::identity) and type when type was typedefed to char* all denote the same type. The question is worded in such a way that type should denote a type (obviously). type grammatically is a simple-type-specifier, but char* is not. It's a type-id, which you can pass as template arguments. Also, please don't insult people by saying they write "nonsense". – Johannes Schaub - litb Oct 30 at 22:13
show 13 more comments
vote up 2 vote down

There is no difference; the C++ standard (1998 and 2003 editions) is clear about this point. Try the following program, make sure you use a compiler that's compliant, such as the free preview at http://comeaucomputing.com/tryitout/.

#include <cstdlib>
#include <string>
int main() {
  int('A'); (int) 'A'; // obvious
  (std::string) "abc"; // not so obvious
  unsigned(a_var) = 3; // see note below
  (long const&) a_var; // const or refs, which T(v) can't do
  return EXIT_SUCCESS;
}

Note: unsigned(a_var) is different, but does show one way those exact tokens can mean something else. It is declaring a variable named a_var of type unsigned, and isn't a cast at all. (If you're familiar with pointers to functions or arrays, consider how you have to use a parens around p in a type like void (*pf)() or int (*pa)[42].)

(Warnings are produced since these statements don't use the value and in a real program that'd almost certainly be an error, but everything still works. I just didn't have the heart to change it after making everything line up.)

link|flag

Your Answer

Get an OpenID
or

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