在c ++中typedef和指针有哪些规则?

时间:2012-01-31 19:28:32

标签: c++ pointers typedef

  

可能重复:
  C++ typedef interpretation of const pointers

我刚刚了解到typedef使用指针做了奇怪的事情

以下是一个例子:

typedef float* fptr;
const fptr f; // This is float * const f instead of const float * (like I wanted)

为什么这样做?

1 个答案:

答案 0 :(得分:3)

似乎已经回答:

C++ typedef interpretation of const pointers

有关typedef和指针的更多讨论,另请参阅Is it a good idea to typedef pointers?