gpt4 book ai didi

c++ - 编译错误 : Wants Pointer instead of Object

转载 作者:行者123 更新时间:2023-11-27 23:27:16 25 4
gpt4 key购买 nike

我在制作两个对象的数组时遇到以下错误.. Edge 和 Box。

error: conversion from 'const Edge*' to non-scalar type 'Edge' requested.

我希望返回一组边。

在这个头文件上:

class Box
{
private:
bool playerOwned;
bool computerOwned;
Edge boxEdges[4];
int openEdges;
bool full;

public:
Box();
Box(int x, int y);
void setEdges(Edge boxTop, Edge boxBottom, Edge boxLeft, Edge boxRight);
void addEdgeToBox(Edge edge); //add edge to edgeArray.
void setPlayerOwned(bool point);
Edge getBoxEdges() const {return boxEdges;} ****//Error****
bool getPlayerOwned() const {return playerOwned;}
void setComputerOwned(bool point);
bool getComputerOwned()const {return computerOwned;}
int getOpenEdges() const {return openEdges;}
bool isFull()const {return full;}

};
std::ostream& operator<< (std::ostream& out, Box box);

除了在尝试创建 Box 的非头文件中的以下行中将“Edge”替换为“Box”外,我遇到了同样的错误。

  Box box = new Box(x+i,y);

最佳答案

Box box = new Box(x+i,y);  //error

这里有一个错误。你应该这样写:

Box *box = new Box(x+i,y); //ok

这是因为当你使用new ,你正在分配内存,只有指针可以保存内存,所以 box必须是指针类型。

同样,

Edge getBoxEdges() const {return boxEdges;}  //error

应该写成:

const Edge* getBoxEdges() const {return boxEdges;}  //ok

是因为boxEdges是一个数组,它可以衰减为指向其第一个元素的指针类型,并且由于它是 const 成员函数,boxEdges会衰变成const Edge* .


顺便说一下,在第一种情况下,您使用自动对象代替指针:

Box box(x+i, y); //ok

我建议您将 operator<< 的第二个参数设为常量引用:

//std::ostream& operator<< (std::ostream& out, Box box); //don't use this
std::ostream& operator<< (std::ostream& out, Box const & box); //use this

这避免了不必要的复制!

关于c++ - 编译错误 : Wants Pointer instead of Object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8450470/

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