gpt4 book ai didi

c++ - 打印输出函数 C++ 时出错

转载 作者:行者123 更新时间:2023-11-30 05:01:57 24 4
gpt4 key购买 nike

我目前正在为学校做一个程序,这是我第一次在其中使用继承。我的问题是我在尝试打印时从 Visual Studio 收到这些错误。C2296: << 非法,左操作数的类型为“const char[7]”和C2297: << 非法,右操作数的类型为“const std::string *”

我的打印行是:

    string printOutput = "Book #" << &getCallNumber() << ", title: " << &getTitle() << " by " << &getAuthor() << " pages: " << getNumPages() << ", status: " << getStatus() << ", fees: " /*<< getFees()*/;

函数定义如下:

    const string &getCallNumber() const {
return callNumber;
}

const string &getTitle() const {
return title;
}

const string &Book::getAuthor() const
{
return author;
}

int Book::getNumPages() const
{
return numPages;
}

Status getStatus() const {
return status;
}

我还没有定义 getFees 因此它被注释掉了。当我从他们那里拿走 & 时,我会得到更多的错误任何帮助将不胜感激,我已经坐在这里几个小时了,但就是无法理解它。

最佳答案

my print line is :

string printOutput = "Book #" << &getCallNumber() << ", title: " << &getTitle() << " by " << &getAuthor() << " pages: " <<
> getNumPages() << ", status: " << getStatus() << ", fees: " /*<<
> getFees()*/;

在C++中,如果你想打印一些东西,你可以简单地std::cout它(考虑到你要打印的东西已经为 operator<< 重载了 ostream )——不需要构建一个 string对象优先

std::cout << "Book #" << getCallNumber() << ", title: " << getTitle() << " by " 
<< getAuthor() << " pages: " << getNumPages() << ", status: " << getStatus() << ", fees: ";

getStatus()返回 Status , 你应该确保 Status类重载了operator <<对于 ostream .注意,没有 &签到前面——添加&将采用 string 的地址, 而不是 string本身。

更新

您可以重载 operator<<任何你想的地点都可以。它不需要是 friend如果它不打算访问 private 则函数类的一部分。并给出 Statusenum class ,我相信它会在 main 以上重载就足够了。并给出

enum class Status { AVAILABLE, ON_LOAN, PROCESSED, MISSING, OVERDUE, };

你可以做类似的事情

ostream& operator<<(ostream& os, Status s) {
switch(s)
{
case Status::AVAILABLE:
os << "AVAILABLE";
break;
case Status::ON_LOAN:
os << "ON_LOAN";
break;
....//And do the same thing for the other cases

}
return os;
}

关于c++ - 打印输出函数 C++ 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50082611/

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