[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppTypedef
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppTypedef
(C++) typedef
keyword enabling you to define different names for the same type or to use a shorthand notationtypedef unsigned int UINT; typedef unsigned int uint; UINT x = 3; uint y = 4;
typedef std::vector<std::vector<double> > Matrix; Matrix myMatrix;
- include <vector>
Code links
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
