graphics.h - 安装它,为什么还出错?

时间:2016-06-28 10:51:01

标签: c++ graphics

所以我按照本页中另一个问题答案的说明来解决如何安装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?

1 个答案:

答案 0 :(得分:1)

您是否遵循了您指定的link中提供的最后一项决议?

  1. 使用Sublime Text Editor或Notepad ++从已安装Codeblocks的include文件夹中打开文件graphics.h。
  2. 转到第302行
  3. 删除该行并粘贴int left = 0,int top = 0,int right = INT_MAX,int bottom = INT_MAX,在该行中。
  4. 保存文件并开始编码。