graphics.h - 安装好了,为什么还是报错?
graphics.h - installed it, why still error?
所以我按照本页中另一个问题答案中有关如何安装的说明进行操作 graphics.h 结果正确。但是当我包含它时,它向我显示了这个错误消息:
C:\Program Files\CodeBlocks\MinGW\include\graphics.h|302|error: redefinition of 'int right'|
C:\Program Files\CodeBlocks\MinGW\include\graphics.h|302|note: 'int right' previously declared here|
为什么会这样?你能帮我解决这个问题吗?
这是我从中获得信息的地方:
How to use graphics.h in codeblocks?
您是否遵循了您指定的 link 中提供的最后一个解决方案?
- 使用 Sublime Text Editor 或 Notepad++ 从安装了 Codeblocks 的包含文件夹中打开文件 graphics.h。
- 转到第 302 行
- 删除该行并在该行粘贴 int left=0, int top=0, int right=INT_MAX, int bottom=INT_MAX.
- 保存文件并开始编码。
所以我按照本页中另一个问题答案中有关如何安装的说明进行操作 graphics.h 结果正确。但是当我包含它时,它向我显示了这个错误消息:
C:\Program Files\CodeBlocks\MinGW\include\graphics.h|302|error: redefinition of 'int right'|
C:\Program Files\CodeBlocks\MinGW\include\graphics.h|302|note: 'int right' previously declared here|
为什么会这样?你能帮我解决这个问题吗?
这是我从中获得信息的地方: How to use graphics.h in codeblocks?
您是否遵循了您指定的 link 中提供的最后一个解决方案?
- 使用 Sublime Text Editor 或 Notepad++ 从安装了 Codeblocks 的包含文件夹中打开文件 graphics.h。
- 转到第 302 行
- 删除该行并在该行粘贴 int left=0, int top=0, int right=INT_MAX, int bottom=INT_MAX.
- 保存文件并开始编码。