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 的对象和 QStrings 的数组有什么区别?我的意思是看起来两者都表现为一个数组。
QStringList是一个动态数组,这意味着它可以在您向其中添加更多/删除字符串时扩展/收缩。
QStringList
QString array[10];是一个固定大小的数组QString。你不能扩大或缩小它。
QString array[10];
QString