我创建了简单的片段来显示我注意到的奇怪行为。就是这样:
#include <QCoreApplication>
#include <QLineEdit>
class MyObject : public QWidget
{
public:
explicit MyObject(QWidget *parent = 0) : QWidget(parent) {
editor = new QLineEdit(this);
}
void setValue(const QString &s) const {
editor->setText(s);
editor->setReadOnly(true);
editor->setMaxLength(s.length());
}
private:
QLineEdit *editor;
};
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
return app.exec();
}
MyObject::setValue
函数有const
说明符,但这段代码编译得很好。请注意setText
,setReadOnly
和setMaxLength
函数不是const
:
void setText(const QString &);
void setReadOnly(bool);
void setMaxLength(int);
我只想知道是什么导致了这种行为?我将 Qt 4.7.4 与 MingGW 4.6.2 一起使用。