gpt4 book ai didi

c++ - Qt sscanf 等价物

转载 作者:太空狗 更新时间:2023-10-29 19:49:08 24 4
gpt4 key购买 nike

假设我有这个:

QString mystring = "67 49 213 59";
int a, b, c, d;

是否有 Qt 替代 sscanf 以便我可以将数字读入 int 变量?

最佳答案

QTextStream提供标准库流的等价物。不要忘记文本流应该在 字符串之前销毁。

QString mystring = "67 49 213 59";
QTextStream myteststream(&mystring);
int a = 0, b = 0, c = 0, d = 0;
myteststream >> a >> b >> c >> d;

关于c++ - Qt sscanf 等价物,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13013055/

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