- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想知道 Qt 是否提供了 typeid 的替代方法来识别变量类型并以人类可读的格式获取它们的名称。我的具体问题如下:
struct gArgument{
QString type;
void* arg;
};
void gargConverter(gArgument* oArg, T data){
oArg->type = typeid(data).name();
oArg->arg = static_cast<void*> (&data);
}
这个想法是泛化一个变量以用作函数的输入。作为侧节点 tyeinfo 似乎无法在我的系统上正常工作(我在 Windows 7 上使用 MinGW),如果我尝试:
int i; std::cout << typeid(i).name() << std::endl;
QString s; std::cout << typeid(s).name() << std::endl;
double d; std::cout << typeid(d).name() << std::endl;
float f; std::cout << typeid(f).name() << std::endl;
我明白了
i
7QString
d
f
有什么建议吗?
最佳答案
你可以使用 this :
const char * QVariant::typeName () const
Returns the name of the type stored in the variant. The returned strings describe the C++ datatype used to store the data: for example, "QFont", "QString", or "QVariantList". An Invalid variant returns 0.
这将适用于 POD 和已注册的内置 Qt 类型。您需要使用 following method用于注册您的自定义类型。
int qRegisterMetaType(const char * typeName)
您可以尝试的另一件事是通过以下方式使用 Object 的 QMetaObject,尽管它对 QVariant
来说有点多余:
const char * QMetaObject::className() const
Returns the class name.
和
const QMetaObject * QObject::metaObject() const [virtual]
Returns a pointer to the meta-object of this object.
A meta-object contains information about a class that inherits QObject, e.g. class name, superclass name, properties, signals and slots. Every QObject subclass that contains the Q_OBJECT macro will have a meta-object.
The meta-object information is required by the signal/slot connection mechanism and the property system. The inherits() function also makes use of the meta-object.
If you have no pointer to an actual object instance but still want to access the meta-object of a class, you can use staticMetaObject.
不用说,这只适用于 QObjects,所以不适用于 QString 等。您需要创建 QObject 子类。
还有一些 QMetaType
可用于创建,但是 this有点不同,所以我只是在这里提到完整:
int QMetaType::type(const char * typeName) [static]
Returns a handle to the type called typeName, or QMetaType::UnknownType if there is no such type.
在这里你可以找到所有的类型:
http://qt-project.org/doc/qt-5.1/qtcore/qmetatype.html#Type-enum
关于c++ - Qt:typeid替代,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20684712/
我正在制作一个 C++ 库,它严重依赖 RTTI(可自定义桥接至另一种语言)并且对字符串文字类型非常困惑。 这是我为说明问题所做的一个简单测试: std::cout direct-initializ
我正在使用关联列表来关联 TypeId事件类型的 s 和 TypeId谁想要接收它们。 当我尝试获取 TypeId 时的 Rc , 它给你相同的 TypeId (Rc 中的一个存储了一个 Any )不
答:总之使用虚函数!因此,实际上不要将其用作好的设计,但出于学习目的请阅读! 我想先说我正在使用 C++ 和 Qt我有一个形状指针 vector (基类) 编辑:doSomething() 不是基类的
我正在阅读C++ 11草案标准,关于[expr.typeid]的部分提到了以下内容(强调我的意思): [...] When typeid is applied to an expression oth
使用 gcc 4.9 我发现用字面量为复数生成的类型与通过常规方法创建的类型不同,即: typeid(complex(0.0,1.0)) != typeid(1.0i) 我在这里犯错了吗? 这是编译器
使用 gcc 4.9 我发现使用类型文字生成的复数类型与通过常规方式创建的类型不同,即: typeid(complex(0.0,1.0)) != typeid(1.0i) 我在这里犯错了吗? 这是编译
我正在观看以下 video 这里提到g++对于以下代码会报错: #include #include #include struct S { std::vector b ; }; int mai
我不想使用函数重载来对函数进行小的更改。相反,我想使用typeid()检查下面的模板化函数的传递参数。但是,如果我没有在下面的代码中注释掉该行,则会产生以下编译错误: Severity Code
示例代码: MainWindow::MainWindow(QWidget *parent) { QString strTemp = typeid(this).name();
我有以下代码: #include class Bobo {public: int member; void function() { auto lambda
根据标准,typeid 运算符是依赖于实现的,因此在由不同编译器编译的其他进程创建的对象上使用它是无稽之谈。但是提供进程被同一个编译器编译是什么情况呢? 最佳答案 它可能不会工作,因为外部对象将在它自
class A { protected: int a; public: A(); A(int); virtual void print()=0; virtual
我正在开发实体组件系统,我希望能够使用此方法从实体中检索给定类型的组件: template T* Entity::getComponent() { for( auto i = mCompon
我得到一个有两个基类指针的函数,根据子类,应该调用其他函数...... 像这样: void function(A* a, A* a2){ if (typeid(*a).name() =
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Printing derived class name in base class 我正在使用 GCC,下面
constructor 定义中的print 语句没有打印出来,是不是main 中的constructor 调用正确?我知道我在这里遗漏了一些要点,请指出。 #include #include te
我想知道 typeid 是否是一个“足够硬”的类型安全标准,可以放弃所有通常的预防措施。具体来说,请考虑以下代码片段: class storage { private: std::map ob
我在我的代码中使用了 typeid,但在我看来,如果我避免使用 typeid,代码会更清晰。 如果我们要存储类的类型,为什么我们首先要选择面向对象的语言呢? 但我一遍又一遍地看到这种模式,我不知道如何
我有以下使用 3 个不同映射的类:键始终是字符串,而值可以是字符串、整数或 float 。 class MyMaps { public: template void addKey(const
我想要一个 constexpr 函数,它将为每个 C++ 类型返回一个唯一的 id,如下所示: using typeid_t = uintptr_t; template constexpr type
我是一名优秀的程序员,十分优秀!