C++ Typedef and type aliases explained πββοΈ
#typedef #using
// Typedefs and type aliases
// typedef = reserved keyword used to create an additional name
// (alias) for another data type.
// New identifier for an existing type
// Helps with readability and reduces typos
// Use when there is a clear benefit
// Replaced with βusingβ (work better w/ templates)
1 view
289
78
1 month ago 00:05:26 1
C++ Typedef and type aliases explained πββοΈ