我们有以下便利功能,可以从地图中获取值 如果找不到密钥,则返回后备默认值。
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;
}
这个函数的问题是它允许传递一个临时对象作为第三个参数,这将是一个bug。例如:
const string& foo = FindWithDefault(my_map, "");
是否可以通过使用以某种方式禁止将rvalue引用传递给第三个参数 std :: is_rvalue_reference和static assert?
答案 0 :(得分:11)
添加此额外重载应该有效(未经测试):
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;
重载决策将为rvalue引用选择此重载,= 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'
然而,第一个调用工作正常,如果你注释掉第二个调用,那么程序就会编译。