我对这段代码有疑问:
#include <string>
#include <iostream>
struct A{
template<class UT>
A(UT &&s) : internal(std::forward<std::string>(s)){
}
std::string internal;
};
int main(){
const std::string &s = "hello";
A a1{ s };
std::cout << "s = " << s << std::endl;
}
当前的示例无法编译,如果我更改s
为非常量,它会移动字符串。
我有类似的代码可以正常工作,但在这种情况下,我看不到有什么问题。