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