I know that in C++11 we can now use using to write type alias, like typedefs:
using
typedef
typedef int MyInt;
Is, from what I
They are largely the same, except that:
The alias declaration is compatible with templates, whereas the C style typedef is not.