我可以为 QObject 的子类设置复制构造函数吗?

2023-01-22C/C++开发问题
1

本文介绍了我可以为 QObject 的子类设置复制构造函数吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

这里 我们可以读到没有复制构造和复制赋值运算符可评估.但是这里我们可以读到qRegisterMetaTypeQ_DECLARE_METATYPE 必须有公共默认构造函数、公共复制构造函数和公共析构函数.问题是:谁在说谎?还是我没有正确理解?

Here we can read that no copy construct and copy assignment operator evaluable. But here we can read that qRegisterMetaType and Q_DECLARE_METATYPE have to have public default constructor, public copy constructor and public destructor. The question is: who is telling a lie? Or I did not understand it correctly?

推荐答案

一切都是真的:
1.QObject不能被复制,它的所有后代也不能被复制.
2. Q_DECLARE_METATYPE 接受带有公共构造函数、复制构造函数和析构函数的对象.

Everything is true:
1. QObject can't be copied and all its descendants can't be copied also.
2. Q_DECLARE_METATYPE accepts objects with public constructor, copy constructor and destructor.

没有矛盾,因为你不能用Q_DECLARE_METATYPE注册QObject后代.

There is no contradiction, because you can't register QObject descendants with Q_DECLARE_METATYPE.

当您将类转换为 QVariant 时,它使用复制构造函数来复制您的对象:

When you convert your class to QVariant it uses a copy constructor to make a copy of your object:

 void *ptr = QMetaType::construct(x->type, copy);

这篇关于我可以为 QObject 的子类设置复制构造函数吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6