摘要: (1)typedef int *PINT; const PINT p2; 相当于是int *const p2;(2)typedef int *PINT; PINT const p2; 相当于是int *const p2; (3)如果确实想得到const int *p;这种效果,只能typedef c 阅读全文
posted @ 2021-04-19 20:18 Ben002 阅读(92) 评论(0) 推荐(0)