I'm new to C++ and i have a case where vb.nets Dim or C#s var would help me greatly.
i googled around and i found no questions for this? (although search terms with var or dim and C++ seemed to stray easy)
is there an equivalent for this?
feedback
|
|
Not in the current standard. However, the new version that is probably due this year (most likely called C++11, but it's also still often referred to as C++0x) has For example:
| |||
|
feedback
|
|
You're probably looking for the | |||
|
feedback
|
|
As per my comment, Dim does a lot of different things. If you are looking for a variable that can be anything, or something that will work like
You can use
Cliff notes: boost::any will work for you | ||||
|
feedback
|
|
In C++ you can use The
In the The | |||
|
feedback
|