这是我的类型系统的简化版本:
#include <string>
#include <vector>
template<typename T>
class Box {
public:
Box(const T& value) : _value(value) {};
private:
T _value;
/* ... */
};
typedef Box<int> Int;
typedef Box<double> Double;
typedef Box<std::string> String;
int main(int argc, char* argv[]) {
String a("abc");
std::vector<String> b = { std::string("abc"), std::string("def") };
// error C2664: 'Box<std::string>::Box(const Box<std::string> &)' : cannot convert argument 1 from 'const char' to 'const std::string &'
std::vector<String> c = { "abc", "def" };
}
虽然编译,a
但没有,原因似乎是我尝试从. 这提出了两个问题:b
c
const char
为什么
b
可能但不可能c
?是因为嵌套的模板std::vector<Box<std::string> >
吗?我可以
c
在不破坏一般拳击机制的情况下工作(参见typedef Box<double> Double
?