我有两个模板类,比如
template <class T>
class MyClass1{};
template <class T>
class MyClass2{};
我有一个使用它们作为参数的模板函数。这些类专用于 std::string:
template <template class<std::string> T> myMethod(T<std::string>& arg){}
我想使用 myMethod(objectOfMyClass1) 和 myMethod(objectOfMyClass2),但代码无法编译。如何为模板函数专门化模板类?