Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个类型的班级成员QStringList。我有一个猜测,当这个类被实例化时,nex实例会得到一个QStringLsit没有元素的实例。 我有一个函数应该QStringList在用户交互中填写这个。但是,我在调试器中看到函数调用时类成员不存在。这可能是什么?有没有办法初始化QListString我可能在这里丢失的?
QStringList
nex
QStringLsit
QListString
QStringList应该在创建对象时自动初始化(除非它是指针)。我看到调试器行为的两种可能解释:
this
QStringList*
list = new QStringList();