当我用 case 语句调用自定义对象时,为什么不显示它?
Why isn't my custom object being displayed when I call on it with a case statement?
我只是想知道为什么当我在其上调用 case(main 中的 switch 语句)时,这个自定义 Account 对象没有显示在我的控制台上?我不会让任何人厌烦大部分代码,但这是我的帐户 class:
的 .cpp 文件中的重载方法
std::ostream& operator<<(std::ostream& out,const Account& acc) {
out << acc.name << '\n';
out << acc.accountBalance;
return out;
}
我对 Account 参数是否应该是常量感到有点困惑,因为我将根据用户输入更改其状态。我取出了 const 关键字但没有运气。输出是这样的 00AA87081.
谢谢!
编辑:
好的抱歉,这是 main 中的 switch 语句:
switch (choice) {
case 1:
std::cout << "***User registration***" << std::endl;
std::cout << "Please enter your name." << std::endl;
std::cin >> name;
a->setName(name);
break;
case 2:
std::cout << "How much credit do you want to deposit?" << std::endl;
std::cin >> input;
a->deposit(input);
std::cout << "Your account balance is now " << a->getAccountBalance() << std::endl;
break;
case 3:
std::cout << "How many black and white pages do you want to print? - 1 credit per page" << std::endl;
std::cin >> bPages;
a->printBW(bPages);
break;
case 4:
std::cout << "How many colour pages do you want to print? - 2.5 credits per page" << std::endl;
std::cin >> cPages;
a->printC(cPages);
break;
case 5:
std::cout << "Please enter your promotional code." << std::endl;
std::cin >> code;
a->promo(code);
break;
case 6:
std::cout << a << std::endl;
break;
case 7:
std::cout << "Thank you" << std::endl;
exit(0);
break;
default:
std::cout << "Please enter a valid option." << std::endl;
}
} while (choice !=7);
我已经在上面创建了对象,即使我在 switch 语句之外调用 std::cout << a,它也做同样的事情。
正如我和许多其他人猜测的那样,您正在打印一个 指针 ,这意味着输出将是指针的内容(即它指向的地址)。
要打印 object,您需要使用一元 *
运算符取消引用指针:
std::cout << *a << '\n';
// ^
// |
// Notice asterisk here
您可以选择更改 operator<<
函数,将 指针 指向 class 而不是引用(或添加新的重载功能)。
我只是想知道为什么当我在其上调用 case(main 中的 switch 语句)时,这个自定义 Account 对象没有显示在我的控制台上?我不会让任何人厌烦大部分代码,但这是我的帐户 class:
的 .cpp 文件中的重载方法std::ostream& operator<<(std::ostream& out,const Account& acc) {
out << acc.name << '\n';
out << acc.accountBalance;
return out;
}
我对 Account 参数是否应该是常量感到有点困惑,因为我将根据用户输入更改其状态。我取出了 const 关键字但没有运气。输出是这样的 00AA87081.
谢谢!
编辑:
好的抱歉,这是 main 中的 switch 语句:
switch (choice) {
case 1:
std::cout << "***User registration***" << std::endl;
std::cout << "Please enter your name." << std::endl;
std::cin >> name;
a->setName(name);
break;
case 2:
std::cout << "How much credit do you want to deposit?" << std::endl;
std::cin >> input;
a->deposit(input);
std::cout << "Your account balance is now " << a->getAccountBalance() << std::endl;
break;
case 3:
std::cout << "How many black and white pages do you want to print? - 1 credit per page" << std::endl;
std::cin >> bPages;
a->printBW(bPages);
break;
case 4:
std::cout << "How many colour pages do you want to print? - 2.5 credits per page" << std::endl;
std::cin >> cPages;
a->printC(cPages);
break;
case 5:
std::cout << "Please enter your promotional code." << std::endl;
std::cin >> code;
a->promo(code);
break;
case 6:
std::cout << a << std::endl;
break;
case 7:
std::cout << "Thank you" << std::endl;
exit(0);
break;
default:
std::cout << "Please enter a valid option." << std::endl;
}
} while (choice !=7);
我已经在上面创建了对象,即使我在 switch 语句之外调用 std::cout << a,它也做同样的事情。
正如我和许多其他人猜测的那样,您正在打印一个 指针 ,这意味着输出将是指针的内容(即它指向的地址)。
要打印 object,您需要使用一元 *
运算符取消引用指针:
std::cout << *a << '\n';
// ^
// |
// Notice asterisk here
您可以选择更改 operator<<
函数,将 指针 指向 class 而不是引用(或添加新的重载功能)。