Is
#define LBitmap std::list < CBITMAP *>
a good practice?
Edit: Alright, what can I do to convince my boss that this is bad practice?
|
|
No, its not a good practice to use #define in C++. Its good to use typedef as this has a well defined scope typedef is scope defined and compiler interprets its definition each time it meet which is not the in case of #define. #define is interpreted as compile time itself. Here is the MSDN definition of typedef and #define A typedef declaration introduces a name that, within its scope, becomes a synonym for the type given by the type-declaration portion of the declaration When using DEFINE statements, all instances of that statement are replaced by the value of the statement during a preprocessing phase.
To convince your Boss
After preprocessing, that line expands to
Here, only variable a is of type char * whereas b is simply char If you use typedef
Here both a and b are both of type char * |
||||
|
No, the use of preprocessor macros (
Edit: to convince your boss, you can use the pointer trick Pardeep posted, but it's even more
|
||||
|
|
|
#define is just an textual replace and it can lead a few problems, resulting in code that you dont intend to have. Heres an example where #define fails horribly!
|
|||
|
|
|
No, for defining type aliases, there is a much better facility:
A |
|||
|
|
|
No. Its better to use a
|
|||
|
|