const 注意事项 const 的引用 非常量引用不能指向一个常量对象 const int ci = 1024; int &r2 = ci; // 错误🙅 // 因为r2有可能改变ci的值 初始化常量引用时允许使用任意表达式作为初值 int i = 4… Read More