C++ const 关键字修饰常量
摘要:
// Example program #include <iostream> #include <string> int main() { char hello[] = "helloworld!"; int tmp = 6; int other = 7; const int * a = &tmp; 阅读全文
posted @ 2020-08-13 22:18 庭中核桃树 阅读(196) 评论(0) 推荐(0) 编辑