gpt4 book ai didi

c++ - 没有运算符 "=="匹配这些操作数

转载 作者:太空宇宙 更新时间:2023-11-04 14:54:52 25 4
gpt4 key购买 nike

我不知道是什么原因造成的,但我认为这与函数“password_checker”??

这是我的代码:

#include <iostream>
#include <Windows.h>
#include <string>

using namespace std;

string password_checker();

int main()
{
string password;
cout << "please enter your password: " << endl;
cin >> password;
if (password == password_checker)
{
cout << "Access granted" << endl;
}
else if (password == password_checker)
{
cout << "Access denied" << endl;
}
Sleep(15000);
return 0;
}

string password_checker()
{
string password = "123456";
return password;
}

最佳答案

password == password_checker

这是试图在字符串和函数指针上调用 operator==。您需要调用该函数以便获得一个字符串:

password == password_checker()

关于c++ - 没有运算符 "=="匹配这些操作数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20727833/

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