2021年9月11日
摘要: 参考:C++ static const volatile总结 const 1.const位于*左侧,用来修饰指针指向的变量,故指针指向常量// 指针不允许改变数据 int b = 500; const int *a = &b; *a = 600; // error // 可以通过变量本身去修改 in 阅读全文
posted @ 2021-09-11 18:44 freden 阅读(379) 评论(0) 推荐(0) 编辑