gpt4 book ai didi

c++ - 我的 type_trait 在模板化/非模板化代码中的不同行为

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:26:17 25 4
gpt4 key购买 nike

在下面的代码片段中,has_bar 在 main 和 DoStuff 方法中的行为不同:

在 main 方法中,a_bar == falseb_bar == true

当我执行这个时,我得到 2x“Foo”作为输出。为什么?

#include <iostream>

struct A
{
void Foo() { std::cout << "Foo" << std::endl; }
};

struct B : public A
{
void Bar() { std::cout << "Bar" << std::endl; }
};

template<typename, typename = void>
struct has_bar : std::false_type
{ };

template<typename T>
struct has_bar<T, std::void_t<decltype(T::Bar)>> : std::true_type
{ };

template<typename T>
void DoStuff(T t)
{
if constexpr (has_bar<T>::value)
{
t.Bar();
}
else
{
t.Foo();
}
}


int main()
{
A a;
B b;

constexpr bool a_bar = has_bar<A>::value; // false
constexpr bool b_bar = has_bar<B>::value; // true

DoStuff(a);
DoStuff(b);

std::cin.ignore();

return 0;
}

最佳答案

应该是:

template<typename T>
struct has_bar<T, std::void_t<decltype(&T::Bar)>> : std::true_type
// ^^
{ };

Demo

关于c++ - 我的 type_trait 在模板化/非模板化代码中的不同行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56543004/

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