| 
 1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
 | 
class A {...private:     int a;public:     const int b;     float* &c;     static const char* d;     static double* e;}; | 
a b c
b c
b c d e
b c d
b
c
答案:B 错选:C
原文:https://www.cnblogs.com/kxzh/p/9143990.html