label_5->setText(m); 这给了我: string is undeclared identifier 我想像这里一样使用字符串数据类型而-6ren">
gpt4 book ai didi

c++ - 如何在同一程序中使用标准 C++ 代码和 Qt 代码?

转载 作者:行者123 更新时间:2023-11-28 06:09:51 24 4
gpt4 key购买 nike

string m ="kosala";
ui->label_5->setText(m);

这给了我:

string is undeclared identifier

我想像这里一样使用字符串数据类型而不使用 QString 类型。我该怎么做?

最佳答案

你可能忘了

#include<string>

你应该调用类型std::string

std::string m ="kosala";

关于c++ - 如何在同一程序中使用标准 C++ 代码和 Qt 代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31497143/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com