摘要: 指针指向的是const(表示不能通过这个指针去修改变量,并不是使得那个变量成为const) const int *p = &i; // 等价 const int (*p) = &i; 和 int const (*p) = &i; i = 24; // ok *p = 25; // error p++ 阅读全文
posted @ 2023-03-27 20:44 jason8826 阅读(11) 评论(0) 推荐(0) 编辑