在以下代码中,我无法将临时对象作为参数传递给printAge
函数:
struct Person {
int age;
Person(int _age): age(_age) {}
};
void printAge(Person &person) {
cout << "Age: " << person.age << endl;
}
int main () {
Person p(50);
printAge(Person(50)); // fails!
printAge(p);
return 0;
}
我得到的错误是:
error: invalid initialization of non-const reference of type ‘Person&’ from an rvalue of type ‘Person’
我意识到这与将 lValue 传递给期望 rValue 的函数有关...有没有办法通过使用 std::move 或其他方法将我的 lValue 转换为 rValue?我尝试采用常量参数,但这似乎不起作用。