例如,在某些代码中,
int Type1::LoadFile(QString filePath)
{
QFile infile(filePath);
if (!infile.open(QIODevice::ReadOnly | QIODevice::Text))
return 1 or throw some exception;
QTextStream in(&
我该怎么做,返回1(表示打开文件失败)或抛出一些FileLoadErrorException?
感谢。