摘要: 先看一种情况,它的输出结果是什么? #include <iostream> using namespace std; void F(const int &a) { cout << "int: " << a << endl; } void F(int &&a) { cout << "int &&: " 阅读全文
posted @ 2023-09-14 23:22 Rogn 阅读(113) 评论(1) 推荐(2) 编辑