gpt4 book ai didi

c++ - 禁止将右值引用传递给函数

转载 作者:可可西里 更新时间:2023-11-01 15:56:59 24 4
gpt4 key购买 nike

我们有以下方便的函数,可以从 map 中获取值如果找不到键,则返回回退默认值。

template <class Collection> const typename Collection::value_type::second_type&
FindWithDefault(const Collection& collection,
const typename Collection::value_type::first_type& key,
const typename Collection::value_type::second_type& value) {
typename Collection::const_iterator it = collection.find(key);
if (it == collection.end()) {
return value;
}
return it->second;
}

此函数的问题在于它允许将临时对象作为第三个参数传递,这将是一个错误。例如:

const string& foo = FindWithDefault(my_map, "");

是否可以通过使用以某种方式禁止将右值引用传递给第三个参数std::is_rvalue_reference 和静态断言?​​

最佳答案

添加这个额外的重载应该可以工作(未经测试):

template <class Collection>
const typename Collection::value_type::second_type&
FindWithDefault(const Collection& collection,
const typename Collection::value_type::first_type& key,
const typename Collection::value_type::second_type&& value) = delete;

重载解析将为右值引用选择此重载,= delete 使其成为编译时错误。或者,如果你想指定一个自定义消息,你可以去

template <class Collection>
const typename Collection::value_type::second_type&
FindWithDefault(const Collection& collection,
const typename Collection::value_type::first_type& key,
const typename Collection::value_type::second_type&& value) {
static_assert(
!std::is_same<Collection, Collection>::value, // always false
"No rvalue references allowed!");
}

std::is_same 是为了让static_assert 依赖于模板参数,否则即使不调用重载也会导致编译错误。

编辑:这是一个最小的完整示例:

void foo(char const&) { };
void foo(char const&&) = delete;

int main()
{
char c = 'c';
foo(c); // OK
foo('x'); // Compiler error
}

MSVC 第二次调用 foo 时出现以下错误:

rval.cpp(8) : error C2280: 'void foo(const char &&)' : attempting to reference a deleted function
rval.cpp(2): See declaration of 'foo'

但是,第一个调用工作正常,如果您注释掉第二个调用,则程序可以编译。

关于c++ - 禁止将右值引用传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28739974/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com