template <typename t =“”>:仅允许使用静态数据成员模板

时间:2018-02-01 17:29:23

标签: c++ templates c++14 template-variables

class value {
    template<typename T> T value_1;
    float value_2;

public:
    template<typename T> void Set1(T first) {
        value_2 = (float)0;
        value_1 = first;
    }

    void Set2(float second) {
        value_2 = second;
    }

    float Get2() {
        return this->value_2;
    }

    template<typename T> T Get1() {
        return value_1;
    }
};

Value_1发出错误,说只允许使用静态数据成员模板。有没有办法让value_1没有类型?

1 个答案:

答案 0 :(得分:3)

必须知道非静态数据成员的类型。否则,sizeof(value)是什么?

要存储任意类型的值,您可以使用std::anyboost::any

使用:

class value {
    std::any value_1;
    float value_2;

public:
    template<typename T> void Set1(T first) {
        value_2 = (float)0;
        value_1 = first;
    }

    void Set2(float second) {
        value_2 = second;
    }

    float Get2() {
        return this->value_2;
    }

    template<typename T> T Get1() {
        return std::any_cast<T>(value_1);
    }
};