摘要:
类型转换: 1、QString::toLocal8Bit() const , 查看原文介绍: Returns the local 8-bit representation of the string as a QByteArray. The returned byte array is undefi 阅读全文
摘要:
在public里加入 using QSettings::QSettings; // QSettings 父类名称 表示继承了父类的构造函数与析构函数子类调用父类的成员函数: 父类名称::成员函数名称 阅读全文
摘要:
1、在c++中其实是有最小权限原则的,非const对象是可以调用const成员函数的。 2、const成员函数是不能调用非const成员函数,只能通过强制或者定义mutable 3、构造与析构函数不能定义为const成员函数,构造跟析构会对对象做修改 阅读全文