remove_all_pointer

boost 提供了 remove_pointer ,不过不够,有的时候我们需要拿掉一个“指向指针的指针……的指针”类型上面所有的“指针”前缀,所以下面这个 remove_all_pointer 就有用了,当然它还很不完善,这里先备份,慢慢修改:

#include <boost/mpl/vector.hpp>
#include <boost/mpl/find.hpp>
#include <boost/mpl/size.hpp>
#include <boost/mpl/empty.hpp>
#include <boost/mpl/front.hpp>
#include <boost/mpl/end.hpp>
#include <boost/mpl/deref.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/is_pointer.hpp>
#include <boost/type_traits/remove_pointer.hpp>

using namespace std;
using namespace boost;

template <typename T>
struct remove_all_pointer
{
typedef T type;
};

template <typename T>
struct remove_all_pointer<T*>
{
typedef typename remove_all_pointer<T>::type type;
};

看来是非常容易,测试呢:

#include <string>
#include <iostream>
#include "remove_all_pointer.hpp"

int main()
{
typedef remove_all_pointer<char***>::type result;
cout << typeid(result).name() << endl;

typedef remove_pointer<char** const*>::type res1;
cout << typeid(res1).name() << endl;

cin.get();
}

结果不用我说了。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值