项目范围:学术
预期目的:拥有项目提交的GUI。这个问题涉及使图形窗口的定义区域可点击。我不熟悉其他图形库。
我已经在本网站的其他地方查看并阅读有关此错误的类似帖子:“对非const的引用的初始值必须是左值。”我真的需要一些进一步的解释来解决这个问题:
#include "graph1.h"`
displayPNG("solve.png", 560, 120);
int x2 = 560 + 54;
int x1 = 560;
int y1 = 120;
int y2 = 291 + 120;
const int * xSolv2 = &x2;
const int * xSolv1 = &x1;
displayPNG("exit.png",545,415);
//Game (loop) play for buttons, options & clickables.
//while (true){
if (leftMouse((xSolv2 > xSolv1) && (x1 < &x2), (&y2 > &y1) && (&y1 < &y2))) //error: "Initial value of reference to non-const must be an lvalue."
{
cout << "Test button functions properly" << endl;
}
我尝试了以下变化,但没有成功。
//shortened for brevity purposes.
bool function (&x,&y)
bool function (*x,*y) // I had created some pointer var(s) earlier and initialized them.
bool function(x, y)
如果有人有使用graphlib2015.lib的“graph1.h”的经验,我很想学习。
答案 0 :(得分:1)
我可能错了,但您可以取消xSolv1
和xSolv2
。如果您需要指向x1
的指针,则可以提供&x1
。
指针是!!乐趣的绝佳来源!和意外的行为。当您说(xSolv2 > xSolv1)
时 - 您正在比较x1
和x2
的内存位置!这几乎肯定不是你想要的☺
正如你所说的签名是bool leftMouse(int &x, int &y)
,你可能想做类似的事情......
int x;
int y;
leftMouse(x, y); // probably will update x and y with the mouse position
if (x1 < x && x < x2 && y1 < y && y < y2 ) {
// then the mouse is in box
}