I'm new to C++, but with some experience in Javascript.
In JavaScript, when I write:
var object = {};
I create an object that is "completely generic" in the sense that it has no members/features, but it can have any member we like by adding that member later.
Can I create or simulate the this kind of an object in C++?
The answer is mostly-no, you can't.. In JavaScript,
Object
's can be likened to a dictionary or map from keys to typed values, with both the values and their types settable at run-time.You can create a dictionary of arbitrary-typed values in C++, using the type-erasure capability of
std::any
, and strings for keys. With this approach, you can write:You can't use plain-and-simple C++ syntax on new fields in your generic object, i.e. you can't write:
like you may be used to from JavaScript. Instead, it would have to be:
And that's the "statically-typed" nature of C++. Or going even further, avoiding function pointers:
Use the clearly-typed approach, rather than the "dictionary-of-any's" I described above; that one would be cumbersome, slow, and frowned upon by most people.
See also:
What is the difference between statically typed and dynamically typed languages?