最佳答案
如果我被允许做以下事情:
template <typename T = int>
class Foo{
};
为什么不允许我做以下主要?
Foo me;
但我必须说明以下几点:
Foo<int> me;
c++ 11引入了默认模板参数,现在我完全理解不了它们。