
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is typedef declarations in C++?
The typedef keyword in C++ can be used to give a type a new name. For example, you can give a new name of BYTE to unsigned characters −
typedef unsigned char BYTE;
After this type definition, the identifier BYTE can be used as an abbreviation for the type unsigned char, for example −
BYTE b1, b2;
This will declare 2 variables b1 and b2 of type unsigned char. Typedefs are really useful when you have huge names due to namespaces, class names, etc. For example, if you want a variable of type std::vector<std::pair<int, int>>::iterator multiple times throughout your program. You can just rename it using typedef −
typedef std::vector<std::pair<int, int>>::iterator it_vec_pair;
And use it like −
it_vec_pair it;
- Related Questions & Answers
- What are forward declarations in C++?
- What are Declarations?
- Array Declarations in C#
- Typedef in Dart Programming
- Explain structures using typedef keyword in C language
- What are JSP declarations? In how many ways we can write JSP declarations?
- C# Multiple Local Variable Declarations
- What is the difference between Definitions and Declarations in Compiler design?
- Array Declarations in Java
- Use Declarations in Rust Programming
- Difference between 'struct' and 'typedef struct' in C++?
- Difference between 'struct' and 'typedef struct' in C++ program?
- Group Use declarations in PHP 7
- MySQL row declarations for ZF?
- Understanding CSS Selector and Declarations
Advertisements