我刚刚了解到typedef
使用指针做了奇怪的事情
以下是一个例子:
typedef float* fptr;
const fptr f; // This is float * const f instead of const float * (like I wanted)
为什么这样做?
答案 0 :(得分:3)
似乎已经回答:
C++ typedef interpretation of const pointers
有关typedef和指针的更多讨论,另请参阅Is it a good idea to typedef pointers?。