70,020
社区成员




/* Forward declaration for the object interface */
struct SLObjectItf_;
typedef const struct SLObjectItf_ * const * SLObjectItf;
int a=0;
const int *b= &a;
const int *const* c= &b;
int d=100;
*c = &d; //error
int *e = new int(10);
c=&e;//ok