Get typedef of current class(获取当前类的 typedef)
问题描述
我目前正在将 boost::intrusive_ptr 与我的 GUI 类一起使用.尽管这或多或少是一个方便的问题,但是否有正确的方法来获取当前类的类型名?我问的原因是我有一个宏来定义不同的指针类型:
I'm currently using boost::intrusive_ptr together with my GUI classes. Although this is more or less a convenience question, is there a proper way to get the typename of the current class? The reason I'm asking is that I have a macro for typedef'ing the different pointer types:
#define INTRUSIVE_PTR_TYPEDEFS(CLASSNAME) typedef boost::intrusive_ptr<CLASSNAME> Ptr;
typedef boost::intrusive_ptr<const CLASSNAME> CPtr;
typedef CLASSNAME* WeakPtr;
typedef const CLASSNAME* CWeakPtr;
...
class Widget
{
public:
INTRUSIVE_PTR_TYPEDEFS(Widget);
...
};
class Button : public Widget
{
public:
INTRUSIVE_PTR_TYPEDEFS(Button);
...
};
自动推导出 CLASSNAME
会更舒服,因此您可以简单地将其复制粘贴"到类主体中.我使用的是 Visual Studio 2010 附带的编译器.
It would be much more comfortable to have CLASSNAME
automatically deduced so you could simply copy'n'paste it into the class body. I'm using the compiler shipped with Visual Studio 2010.
提前致谢!
推荐答案
不,这在 C++ 中是不可能的.
No, that's not possible to do in C++.
这篇关于获取当前类的 typedef的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取当前类的 typedef


基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01