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