- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
将一个项目从 Qt4 迁移到 Qt5 我得到了这个错误,我已经研究过,显然你不能从 QObject 创建一个派生类的复制构造函数(这太不可思议了,因为这段代码不是我的,它应该在以前的版本中编译).复制构造函数并没有真正复制任何 QObject 值,而且我不知道 QList 有什么问题。
In file included from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtGui/qwindowdefs.h:45:0,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/qwidget.h:45,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/QWidget:1,
from ..\marssies\wavingwidget.h:4,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\graphicsprimitive.h: In instantiation of 'void QList<T>::node_construct(QList<T>::Node*, const T&) [with T = SIZArrow]':
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:515:32: required from 'void QList<T>::append(const T&) [with T = SIZArrow]'
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:301:49: required from 'void QList<T>::push_back(const T&) [with T = SIZArrow]'
..\marssies\wavingwidget.cpp:345:23: required from here
In file included from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtGui/qwindowdefs.h:45:0,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/qwidget.h:45,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/QWidget:1,
from ..\marssies\wavingwidget.h:4,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\graphicsprimitive.h: In instantiation of 'void QList<T>::node_construct(QList<T>::Node*, const T&) [with T = SIZPolygon]':
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:515:32: required from 'void QList<T>::append(const T&) [with T = SIZPolygon]'
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:301:49: required from 'void QList<T>::push_back(const T&) [with T = SIZPolygon]'
..\marssies\wavingwidget.cpp:330:24: required from here
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qglobal.h:981:12: error: 'QObject& QObject::operator=(const QObject&)' is private
Class &operator=(const Class &) Q_DECL_EQ_DELETE;
^
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qobject.h:465:5: note: in expansion of macro 'Q_DISABLE_COPY'
Q_DISABLE_COPY(QObject)
^
In file included from ..\marssies\wavingwidget.h:10:0,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\graphicsprimitive.h:50:7: error: within this context
class GraphicsPrimitive : public QObject {
^
In file included from ..\marssies\wavingwidget.h:13:0,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\polygon.h:6:7: note: synthesized method 'GraphicsPrimitive& GraphicsPrimitive::operator=(const GraphicsPrimitive&)' first required here
class SIZPolygon : public GraphicsPrimitive {
^
In file included from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qobject.h:51:0,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/qwidget.h:46,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/QWidget:1,
from ..\marssies\wavingwidget.h:4,
from ..\marssies\wavingwidget.cpp:1:
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:372:35: note: synthesized method 'SIZPolygon& SIZPolygon::operator=(const SIZPolygon&)' first required here
else *reinterpret_cast<T*>(n) = t;
^
部分wavingwidget.cpp
SIZPolygon d;
/* ...more code...*/
d.setData(TRIANGLE_VERTEX_FIRST, w1Data.pointNumber);
d.setData(TRIANGLE_VERTEX_SECOND, w2Data.pointNumber);
d.setData(TRIANGLE_VERTEX_THIRD, w3Data.pointNumber);
d.setData(POLYGON_WAVEHEIGHT, waveAltVal);
polygons.push_back(d); //wavingwidget.cpp:330:24
double waveComputedDir = (w1Data.waveDirection + w2Data.waveDirection + w3Data.waveDirection) / 3.0;
部分graphicsprimitive.h
class GraphicsPrimitive : public QObject { //graphicsprimitive.h:50:7
Q_OBJECT
friend class PainterBar;
public:
GraphicsPrimitive(void);
GraphicsPrimitive(const GraphicsPrimitive&);
~GraphicsPrimitive(void);
部分polygon.h
class SIZPolygon : public GraphicsPrimitive { //polygon.h:6:7
public:
SIZPolygon();
~SIZPolygon(void);
void draw(QPainter*);
void addPoint(double, double, int);
bool containsScreen(int, int);
bool containsGeo(double, double);
QList<QPair<int, int> > getCenterPoints();
QPair<double, double> getGeoCenterPoint();
bool isOverNode(int, int, int*);
void movePoint(int, int, int);
void move(int, int);
void toXML(QDomElement*, QDomDocument*);
int containsSegment(int, int);
private:
void countCOFMA(double*, double, double, double, double);
};
如您所见,我通过常量引用传递 QObject,所以实际上我不确定代码有什么问题,可能是 QList 的问题,但我不明白是怎么回事。我见过类似的问题,但没有找到任何可以帮助我的东西。
我会很高兴知道哪个部分失败/要寻找什么,这样我就可以更好地寻找解决方案编辑
我按照@ratchetfreak 告诉我的做了,并设法解决了一些错误,但它仍然说它是私有(private)的:
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qglobal.h:981:12: error: 'QObject& QObject::operator=(const QObject&)' is private
Class &operator=(const Class &) Q_DECL_EQ_DELETE;
^
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qobject.h:465:5: note: in expansion of macro 'Q_DISABLE_COPY'
Q_DISABLE_COPY(QObject)
^
In file included from ..\marssies\wavingwidget.h:10:0,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\graphicsprimitive.h:50:7: error: within this context
class GraphicsPrimitive : public QObject {
^
In file included from ..\marssies\wavingwidget.h:11:0,
from ..\marssies\wavingwidget.cpp:1:
..\marssies\arrow.h:7:7: note: synthesized method 'GraphicsPrimitive& GraphicsPrimitive::operator=(const GraphicsPrimitive&)' first required here
class SIZArrow : public GraphicsPrimitive
^
In file included from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qobject.h:51:0,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/qwidget.h:46,
from ..\..\..\..\..\Qt5\5.2.1\mingw48_32\include\QtWidgets/QWidget:1,
from ..\marssies\wavingwidget.h:4,
from ..\marssies\wavingwidget.cpp:1:
..\..\..\..\..\Qt5\5.2.1\mingw48_32\include/QtCore/qlist.h:372:35: note: synthesized method 'SIZArrow& SIZArrow::operator=(const SIZArrow&)' first required here
else *reinterpret_cast<T*>(n) = t;
最佳答案
QObject 不可复制,只能通过指针引用;所以QList<SIZPolygon>
的声明(正如我在您的错误消息中看到的那样)迟早会导致问题。
如果不是真正需要的话,要么从 QObject 中移除对 GraphicsPrimitive 的继承
或将其更改为 QList<SIZPolygon*>
并根据需要重新设置
SIZPolygon* d = new SIZPolygon();
d->setParent(this);
//convention is to add a QObject parent=0 to the constructor but this works as well
当你需要删除它时,你调用d->deleteLater()
在上面。
关于c++ - 'QObject& QObject::operator=(const QObject&)' 是私有(private)的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23628890/
据我所知,在 C# 中,所有字段默认都是私有(private)的,如果没有另外标记的话。 class Foo { private string bar; } class Foo { strin
这个问题在这里已经有了答案: Why is it allowed to access Java private fields via reflection? (7 个答案) 关闭 6 年前。 使用反
在 C#(和许多其他语言)中,访问相同类型的其他实例的私有(private)字段是完全合法的。例如: public class Foo { private bool aBool; pu
使用私有(private)方法通过将一些决策点重构为单独的方法来降低 CC 会降低实际方法的 CC 并易于阅读,但不会减少在测试中获得完整分支覆盖的工作量。 这合理吗?你有什么现场经验? 最佳答案 好
在下面的例子中,模块outer有一个私有(private)类型Private和一个私有(private)内部模块inner。 inner 能够访问Private(因为子模块可以访问其父级的私有(pri
class Person def one @var = 99 self.two end private def two p @var end end p=P
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我正在尝试获得良好的 Ruby 编码风格。为防止意外调用具有相同名称的局部变量,我总是在适当的地方使用 self.。但是现在我偶然发现了这个: class MyClass "method" a
今天遇到一个案例类构造函数的奇怪问题。我想将构造函数设为私有(private),看来这不是问题。所以我已经在我的一个项目中尝试过它并且它有效。但在另一个项目中,我可以调用私有(private)构造函数
我想坚持使用记录,并且不想返回对象。所以我想知道是否可以将记录的字段设置为私有(private)?或者创建记录的私有(private)成员。其他具体类型(例如可区分联合)怎么样? 或者,这个要求是否违
我正在通过 Flickr API 进行经过身份验证的调用来访问照片。但我只得到我的公开照片,而没有任何私有(private)照片。 下面给出的是我正在使用的代码, Flickr f; Request
这两个类的行为不同;原因似乎与使用 private[this] 声明而不是 private 有关。有人可以解释一下为什么吗? 私有(private): class Person( private
在 private 中的 1000 秒 private 之后,我想到可能不需要它 public class Outer { private static class Inner { // yo
我有以下代码: class C { private enum E { // ... } } private extension C { func f(e: E)
OOP 语言中是否有object-private 的概念??我的意思是比经典的私有(private)访问限制更多? Private (or class-private) restricts the a
swift 3.0 我知道fileprivate访问级别修饰符将函数/属性的使用限制在声明它的源文件和 private - 仅限于声明的词法范围。但似乎这条规则不适用于扩展。例如。此代码有效: cla
即将推出的 Delphi 版本中启用该功能的功能怎么样? 也许它可能是一个编译器开关,促进所有 ** private **s to ** strict private **小号。 ... 或者它可能是
我可以通过将函数放入类的私有(private)扩展中来创建私有(private)函数,而不是通过不断调用 private func functionName(){} 来创建新的私有(private)函
部署专用端点并需要专用 IP 地址作为输出,但似乎无法正确获取值查询。下面的结果是“模板输出'主机名'无效:语言表达式属性|'privateIPAddress'具有无效的数组索引..(代码:Deplo
我是一名优秀的程序员,十分优秀!