QString 的 2D 矩阵

发布于 2024-11-15 08:41:09 字数 304 浏览 0 评论 0原文

我想申请一份您可以预订旅行机票的申请。事实上,我正在为一家航空公司设计系统。当我想创建一个数据库(保存航班座位数的二维矩阵)时,它给了我错误。

在不同地方设置的航班数量并且数量正在变化这是我的代码:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

太阳男子 2024-11-22 08:41:09

必读:Qt 容器类

您可以使用 QVector 或 QList 或其他容器类。例如,要构建向量的向量:

QVector< QVector<QString> > matrix(numberOfFlights);
for (int i=0; i<numberOfFlights; i++)
   matrix[i].fill("", numberOfSeats);

这将创建 numberOfFlights 向量,每个向量都包含 numberOfSeats 空字符串。

要设置特定座位:

matrix[flight][seat] = "whatever";

您可以使用常用的 Qt foreach、迭代器或普通的 for 来迭代向量。

A must-read: Qt container classes.

You could use QVectors or QLists or another container class. For example, to build a vector of vectors:

QVector< QVector<QString> > matrix(numberOfFlights);
for (int i=0; i<numberOfFlights; i++)
   matrix[i].fill("", numberOfSeats);

This will create numberOfFlights vectors, that each contain numberOfSeats empty strings.

To set a specific seat:

matrix[flight][seat] = "whatever";

You can iterate over the vectors with the usual Qt foreach, or iterators, or plain for.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文