c++ 11 知识点 1. 万能引用:int add(){ return 100;}const int &n = add(); // 编译通过int &p = add(); // 不能编译通过 c++ 2023-10-01 177 点赞 2 评论 268 浏览