目前是否可以编写函数,这些函数接受const
限定对象的引用,但没有r值?
// Takes no r-values
void foo(std::string& v) {
...
}
...
const string cstr("constant string");
foo("string"); // this does not compile, as wanted
foo(cstr); // this does not compile, as expected. But i would want it to
...
// Takes r-values, which is highly undesired
void foo2(const std::string& v) {
...
}
...
const string cstr("constant string");
foo("string"); // this does compile, but i want it to fail.
foo(cstr); // this does compile
...
问题的背景与稍后的对象副本有关(在foo完成之后)。基本上,引用被推送到队列并稍后处理。我知道,语义混乱,需要shared_ptr
或类似。但我与外部约束有关。
感谢您的建议。
答案 0 :(得分:6)
使用已删除的函数重载:
void foo(std::string& v) {
std::cout << v;
}
void foo(const std::string& v) = delete;
void foo(const char* v) = delete;
或类似。
答案 1 :(得分:1)
您可以在禁用r值refs时明确允许const引用:
void foo(const std::string& v) {
}
void foo(std::string& v) {
}
void foo(std::string&& v) = delete;