gpt4 book ai didi

c++ - 使用 const 引用删除引用

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

对于参数类 C,无论指针、常量或引用修饰符如何,我都希望始终获得“原始”类型。

template<typename __T>
class C
{
public:
typedef std::some_magic_remove_all<__T>::type T;
}

int main()
{
C<some_type>::type a;
}

例如,对于 some_type 等于:

  • int&
  • int**
  • int*&
  • int const &&
  • int const * const
  • 等等

我希望a 始终是int 类型。我怎样才能实现它?

最佳答案

如果你想更多地使用标准库,你可以这样做:

#include <type_traits>
template<class T, class U=
typename std::remove_cv<
typename std::remove_pointer<
typename std::remove_reference<
typename std::remove_extent<
T
>::type
>::type
>::type
>::type
> struct remove_all : remove_all<U> {};
template<class T> struct remove_all<T, T> { typedef T type; };

删除内容直到不再改变类型。使用更新的标准,这可以缩短为

template<class T, class U=
std::remove_cvref_t<
std::remove_pointer_t<
std::remove_extent_t<
T >>>>
struct remove_all : remove_all<U> {};
template<class T> struct remove_all<T, T> { typedef T type; };
template<class T> using remove_all_t = typename remove_all<T>::type;

关于c++ - 使用 const 引用删除引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14522496/

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