What is the difference between
(type)value
and
type(value)
in C++?
|
|
|
|
|
|
|
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 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
will compile, but:
will not. |
||||||||||||||||||||
|
|
|
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/.
Note: (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.) |
||
|
|