gpt4 book ai didi

C++11 函数模板特化为类方法(如果存在)

转载 作者:搜寻专家 更新时间:2023-10-31 01:24:08 25 4
gpt4 key购买 nike

我有这个函数模板:

template <class T>
Json::Value write_json(const T& object);

T 是一个 int 时,特化很简单:

template <>
Json::Value write_json(const int& object) {
Json::Value output;
output = object;
return output;
};

但是,对于更复杂的类,我希望它调用存在的方法:

template <typename T>
struct has_write_json_method {
template <typename U>
static constexpr decltype(std::declval<U>().write_json(), bool()) test(int) { return true; };

template <typename U>
static constexpr bool test(...) { return false; }

static constexpr bool value = test<T>(int());
};

template <class T>
typename std::enable_if<has_write_json_method<T>::value, Json::Value>::type write_json(const T& object) {
object.write_json();
};

例如,对于 foo 类:

Json::Value foo::write_json(void) { 
Json::Value output;
output = 42;
return output;
};

我想像这样调用每个类:

int x_int;
write_json(x_int);
foo x_foo;
write_json(x_foo);

但是,我得到了:

error: call of overloaded 'write_json(const foo&)' is ambiguous

我怎样才能消除这种歧义?

最佳答案

你应该申请SFINAE在另一个重载上也是如此,以避免当类型 T 具有方法 write_json 时出现歧义。

template <class T>
typename std::enable_if<!has_write_json_method<T>::value, void>::type write_json(const T& object);
// ^

LIVE

关于C++11 函数模板特化为类方法(如果存在),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58446663/

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