gpt4 book ai didi

c++ - 使用 QTest 传递给 C 运行时函数的无效参数

转载 作者:行者123 更新时间:2023-11-28 07:52:34 25 4
gpt4 key购买 nike

我正在使用 Qt Creator 开发一个 Qt 项目,一切正常,但是当我使用 QTest 进入单元测试部分时,编译后出现错误“传递给 C 运行时函数的参数无效”。

谁能帮我找出问题的根源?是因为使用了cstdio函数还是和.pro配置有关?

这是我实现的测试方法,但没有奏效:

void TestFichier::testLoad()
{
Fichier a;
a.load("input.txt");
FILE *f=fopen("input.txt","rb");
int c;
int i,*tab=a.getHexValues();
for (i=0;i<3;i++)
c=fgetc(f);
fclose(f);
QCOMPARE(tab[2],c);
}

Fichier 是我用 load 方法创建的一个类。

最佳答案

MSDN fgetc documentation状态:

If [the parameter] stream is NULL, fgetc and fgetwc invoke the invalid parameter handler, as described in Parameter Validation.

因此您应该检查fopen 是否返回NULL,在这种情况下,使用errno 查找错误类型。

关于c++ - 使用 QTest 传递给 C 运行时函数的无效参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13451709/

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