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.
QSetに似たものが必要ですが、アイテムを挿入した順序で保存する必要があります
そんなことありますか?
QList または QVector が役立つかもしれません。
QList<QString> stringList; //By the way, Qt provides QStringList as a typedef for QList<QString> stringList.append("A"); stringList.append("B"); qDebug() << stringList.at(0); //A qDebug() << stringList.at(1); //B