gpt4 book ai didi

C++ 编译器错误消息

转载 作者:行者123 更新时间:2023-11-28 00:45:56 24 4
gpt4 key购买 nike

我对编程还是个新手,我开始了一个草稿项目并将代码复制到另一个项目中,但是当我尝试调试时收到此错误消息,我不知道发生了什么。谁能帮助我吗?

    // this is my code

#include "Questions.h"

#include <iostream>
#include <fstream>

using namespace std;

int main(void)
{
ofstream myfile;
myfile.open ("Questions.txt");
myfile << "Writing this to a file.\n";
myfile.close();
return 0;
}

错误说

error C1075:end of file before the left brace '{' at @questions.cpp(10) was matched

最佳答案

错误消息不言自明。

看看questions.cpp中的代码,main函数在哪里结束? (请记住,头文件是逐字包含的,因此请确保头文件中 { 的数量与 } 的数量相同,并且它们没有被 #ifdef 删除。)由 Victor Sand 提供,dasblinkenlight 和 Hot Licks 都不错。

您目前的代码根本没有使用 Questions.h(现在您已经注释掉了大部分实现),因此请尝试注释掉并进行测试。如果通过,则问题出在Questions.h中。

关于C++ 编译器错误消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16227716/

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