宏中使用的模板参数有问题

2021-12-29 00:00:00 macros parameters templates c++

我正在尝试编译以下代码段,在专门用于 std::vector 的行上出现错误,似乎传入的一个参数以某种方式被假定为两个参数.这可能与尖括号有关吗?

I'm trying to compile the following piece of code, I get an error on the line which specializes std::vector, it seems the one parameter being passed-in is somehow being assumed to be two parameters. Is it perhaps something to do with angle-brackets?

有没有一种特殊的方式/机制可以让这些参数正确地传递给宏?

Is there a special way/mechanism where by such parameters can be correctly passed to the macro?

#include <vector>

template<typename A>
struct AClass {};

#define specialize_AClass(X)
template<> struct AClass<X> { X a; };


specialize_AClass(int) //ok

specialize_AClass(std::vector<int,std::allocator<int> >) //error

int main()
{
   return 0;
}

我得到的错误如下:

1 Line 55: error: macro "specialize_AClass" passed 2 arguments, but takes just 1
2 Line 15: error: expected constructor, destructor, or type conversion before 'int'
3 compilation terminated due to -Wfatal-errors.

链接:http://codepad.org/qIiKsw4l

推荐答案

template<typename TypeX, typename TypeY>
class Test
{
public:
    void fun(TypeX x, TypeY y)
    {
        std::wcout << _T("Hello") << std::endl;
        std::wcout << x << std::endl;
        std::wcout << y << std::endl;
    }
};

#define COMMOA ,

#define KK(x) x val;

void main()
{
    KK(Test<int COMMOA int>);
    val.fun(12, 13);
}

我有一个新的方法来解决这个问题.希望能帮到你 :)

I have a new way to solve this trouble. hope it can help you :)

相关文章