5

是否有可能在struct内部获得“电流类型” struct?例如,我想做这样的事情:

struct foobar {
  int x, y;

  bool operator==(const THIS_TYPE& other) const  /*  What should I put here instead of THIS_TYPE? */
  {
    return x==other.x && y==other.y;
  }
}

我试着这样做:

struct foobar {
  int x, y;

  template<typename T>
  bool operator==(const T& t) const
  {
    decltype (*this)& other = t; /* We can use `this` here, so we can get "current type"*/
    return x==other.x && y==other.y;
  }
}

但它看起来很丑,需要支持最新的 C++ 标准,并且 MSVC 无法编译它(它因“内部错误”而崩溃)。

实际上,我只想编写一些预处理器宏来自动生成函数,例如operator==

struct foobar {
  int x, y;
  GEN_COMPARE_FUNC(x, y);
}

struct some_info {
  double len;
  double age;
  int rank;
  GEN_COMPARE_FUNC(len, age, rank);
}

但我需要知道宏内部的“当前类型”。

4

2 回答 2

0

这个堆栈溢出 URL 指出 boost 库可以计算表达式的类型,但 C/C++ 本身不能:

从对象中获取结构字段的名称和类型

也有人问过类似的问题:

如何向 C++ 应用程序添加反射?

要开始使用 typeof,请包含 typeof 标头:

#include <boost/typeof/typeof.hpp>

要在编译时推断表达式的类型,请使用 BOOST_TYPEOF 宏:

namespace ex1
{
    typedef BOOST_TYPEOF(1 + 0.5) type;

    BOOST_STATIC_ASSERT((is_same<type, double>::value));
}
于 2012-07-25T16:27:07.463 回答
0

实际上,您可以像这样使用 somethink 。

#define GEN_COMPARE_FUNC(type, x, y)\
template<typename type>\
bool operator ==(const type& t) const\
{\
    return this->x == t.x && this->y == t.y;\
}

struct Foo
{
    int x, y;
    GEN_COMPARE_FUNC(Foo, x, y);
};

我不知道如何使用var。以这种方式宏pars(我们需要抛出参数并比较this和t中的每个par,我不知道如何在宏中扩展参数)。

于 2012-07-25T15:27:22.340 回答