QString 的 2D 矩阵
我想申请一份您可以预订旅行机票的申请。事实上,我正在为一家航空公司设计系统。当我想创建一个数据库(保存航班座位数的二维矩阵)时,它给了我错误。
在不同地方设置的航班数量并且数量正在变化这是我的代码:
QString** matrix = new QString*[numberofFlights];
for (int i = 0; i < numberofFlight; i++)
{
matrix[i] = new QString[numberofSeats];
}
我应该使用 Qt 中的哪个类?
I want to make an application with which you can reserve ticket for your travel. In fact, I'm designing the system for an airline. When I want to create a database (a 2D matrix that saves the number of seats in flights), it gives me errors.
The number of flights set in different place and the number is changing this is my code:
QString** matrix = new QString*[numberofFlights];
for (int i = 0; i < numberofFlight; i++)
{
matrix[i] = new QString[numberofSeats];
}
What class in Qt should i use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
必读:Qt 容器类。
您可以使用 QVector 或 QList 或其他容器类。例如,要构建向量的向量:
这将创建
numberOfFlights
向量,每个向量都包含numberOfSeats
空字符串。要设置特定座位:
您可以使用常用的 Qt
foreach
、迭代器或普通的for
来迭代向量。A must-read: Qt container classes.
You could use
QVector
s orQList
s or another container class. For example, to build a vector of vectors:This will create
numberOfFlights
vectors, that each containnumberOfSeats
empty strings.To set a specific seat:
You can iterate over the vectors with the usual Qt
foreach
, or iterators, or plainfor
.