gpt4 book ai didi

c++ - std::is_base_of 和虚基类

转载 作者:太空宇宙 更新时间:2023-11-04 12:57:20 25 4
gpt4 key购买 nike

有没有办法判断一个基类是不是虚基类?

std::is_base_of 将标识一个基类,但我正在寻找类似 std::is_virtual_base_of 的东西来标识一个虚拟基类。

这是出于 SFINAE 的目的,我想在 std::is_virtual_base_of 为真时使用 dynamic_cast(性能较低),在它为假时使用 static_cast(性能更高)。

最佳答案

namespace details {
template<template<class...>class, class, class...>
struct can_apply:std::false_type {};
template<class...>struct voider{using type=void;};
template<class...Ts>using void_t=typename voider<Ts...>::type;
template<template<class...>class Z, class... Ts>
struct can_apply<Z, void_t<Z<Ts...>>, Ts...>:std::true_type {};
}
template<template<class...>class Z, class... Ts>
using can_apply = details::can_apply<Z, void, Ts...>;

这让我们可以轻松地在模板应用程序上进行模块化 SFINAE。

template<class Dest, class Src>
using static_cast_r = decltype(static_cast<Dest>( std::declval<Src>() ));
template<class Dest, class Src>
using can_static_cast = can_apply< static_cast_r, Dest, Src >;

现在我们可以确定是否可以静态转换。

现在我们实现它:

namespace details {
template<class Dest, class Src>
Dest derived_cast_impl( std::true_type /* can static cast */ , Src&& src )
{
return static_cast<Dest>(std::forward<Src>(src));
}

template<class Dest, class Src>
Dest derived_cast_impl( std::false_type /* can static cast */ , Src&& src )
{
return dynamic_cast<Dest>(std::forward<Src>(src));
}
}
template<class Dest, class Src>
Dest derived_cast( Src&& src ) {
return details::derived_cast_impl<Dest>( can_static_cast<Dest, Src&&>{}, std::forward<Src>(src) );
}

测试代码:

struct Base { virtual ~Base() {} };

struct A : virtual Base {};
struct B : Base {};

struct Base2 {};
struct B2 : Base2 {};

int main() {
auto* pa = derived_cast<A*>( (Base*)0 ); // static cast won't work
(void)pa;
auto* pb = derived_cast<B*>( (Base*)0 ); // either would work
(void)pb;
auto* pb2 = derived_cast<B2*>( (Base2*)0 ); // dynamic cast won't work
(void)pb2;
}

live example

关于c++ - std::is_base_of 和虚基类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45948835/

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