模板的Traits

Trait是一种特性描述,通过模板参数应用在程序中,可以减少类型参数,实现更精细的功能控制,提高代码的灵活性。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Traits含义就是特性,应用Trait模板参数,使得我们的程序既保持灵活性,同时减少类型参数的数量。能够使得我们对函数进行更加细粒度的控制。


#ifndef TRAIT_H_
#define TRAIT_H_
/*
template<typename T>
T accumulate( const T *begin, const T *end )
{
    T total = T();

    while ( begin != end ) {
        total += *begin;
        ++begin;
    }

    return total;
}*/


template<typename T>
class AccumulationTraits;

template<>
class AccumulationTraits<char>
{
public:
    typedef int AccT;
    static AccT zero() {
        return 0;
    }
};

template<>
class AccumulationTraits<short>
{
public:
    typedef int AccT;
    static AccT zero() {
        return 0;
    }
};

template<>
class AccumulationTraits<int>
{
public:
    typedef long long AccT;
    static AccT zero() {
        return 0;
    }
};

template<>
class AccumulationTraits<unsigned int>
{
public:
    typedef unsigned long long AccT;
    static AccT zero() {
        return 0;
    }
};

template<>
class AccumulationTraits<float>
{
public:
    typedef double AccT;
    static AccT zero() {
        return 0;
    }
};

template<typename T, typename AT = AccumulationTraits<T> >
class Accum
{
public:
    static typename AT::AccT accumulate( const T *begin, const T *end ) {
        typename AT::AccT total = AT::zero();

        while ( begin != end ) {
            total += *begin;
            ++begin;
        }

        return total;
    }
};

template<typename T>
typename AccumulationTraits<T>::AccT accumulate( const T *begin,
        const T *end )
{
    return Accum<T>::accumulate( begin, end );
}

template<typename Traits, typename T>
typename Traits::AccT accumulate( const T *begin, const T *end )
{
    return Accum<T, Traits>::accumulate( begin, end );
}

#endif

int iv[5] = {1, 2, 3, 4, 5};
double ftotal = accumulate<typename AccumulationTraits<float>, int>( iv, iv + sizeof( iv ) / sizeof( int ) );
EXPECT_EQ( 15,  ftotal );

char cv[] = {'a', 'a', 'b', 'b'};
int total = 97 * 2 + 98 * 2;
EXPECT_EQ( total , accumulate( cv, cv + sizeof( cv ) / sizeof( char ) ) );
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值