我想要一个存储一对不同类型变量的类,但是我需要将变量的零或空默认值作为模板参数传递。我可以将其用于int或doubles,但是如何对string进行呢?我知道c++目前没有字符串参数,但是最新的设计是什么。我需要这样的东西:

#include <iostream>
#include <string>

using namespace std;

template <typename atype, typename btype, atype anull, btype bnull>
class simpleClass {
public:
    atype       var1;
    btype       var2;

    simpleClass<atype, btype, anull, bnull>   *parent;          // pointer to parent node

    simpleClass(); ~simpleClass();
};
template <typename atype, typename btype, atype anull, btype bnull>
simpleClass<atype, btype, anull, bnull>::simpleClass()  {   var1 = anull; var2 = bnull;
                        parent  = NULL;  }
template <typename atype, typename btype, atype anull, btype bnull>
simpleClass<atype, btype, anull, bnull>::~simpleClass() {}


int main() {
    simpleClass<string, int, "", 0> obj;
    obj.var1 = "hello";
    obj.var2 = 45;
    cout << obj.var2;
    return 0;
}

编译这个,我得到
error: ‘struct std::string’ is not a valid type for a template constant parameter

最佳答案

除了指针和引用,您不能将非整数类型作为模板参数传递。您可能希望的最佳行为是传递一个函数,该函数返回atypebtype的“默认”值。

10-07 22:36