请参阅C ++宏中的类

时间:2015-01-31 17:00:03

标签: c++ class macros self-reference

我想写

struct Foo{
    MY_MACRO
};

并将其扩展为

struct Foo{
    void bar(Foo&){}
};

如何定义MY_MACRO?

我能想出的唯一事情如下:

#define MY_MARCO(X) void bar(X&){}
struct Foo{
    MY_MACRO(Foo)
};

这非常接近,但是非常理想,因为我不想重复课程名称。

不幸的是,以下内容无法编译:

struct Foo{
    void bar(decltype(*this)&){}
};

2 个答案:

答案 0 :(得分:1)

这与this question密切相关。答案是你不能(还)编写一些使用你所在类定义类型的东西。你必须编写一个包含类定义开头的宏(即struct Foo)和一些机制方便typedef。

答案 1 :(得分:1)

但是你可以在static_assert中使用decltype(*this)。即:

#include <type_traits>

struct Foo {
    template <typename T>
    void bar(T& t) {
        static_assert(std::is_same<T&, decltype(*this)>::value,
                    "bar() only accepts objects of same type");
    }
};