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