我在使用函数指针来实现有限状态机时遇到了麻烦。我不断收到错误:
b.cpp: In function ‘int main()’:
b.cpp:51: error: ‘have0’ was not declared in this scope
我尝试在第 51 行的 has0 中添加一个 &,但这并没有做任何事情。我已经阅读了一个小时的函数指针,但我仍然无法编译它。我觉得我对函数指针的理解非常好,但显然我在这里缺少一些东西。我所有的函数都是空白的,因为我现在只是想让它编译,它们最终将充满逻辑以通过有限状态机。任何帮助表示赞赏。这是我的 b.cpp 代码:
#include <iostream>
#include <string>
#include "b.h"
using namespace std;
typedef void (*state)(string);
state current_state;
void b::have0(string input)
{
if(input == "quarter"){
}
}
void b::have25(string input)
{
}
void b::have50(string input)
{
}
void b::have75(string input)
{
}
void b::have100(string input)
{
}
void b::have125(string input)
{
}
void b::have150(string input)
{
}
void b::owe50(string input)
{
}
void b::owe25(string input)
{
}
int main()
{
string inputString;
// Initial state.
cout <<"Deposit Coin: ";
cin >> inputString;
cout << "You put in a "+inputString+"." << endl;
current_state = have0;
// Receive event, dispatch it, repeat
while(1)
{
if(inputString == "exit")
{
exit(0);
}
// Pass input to function using Global Function Pointer
(*current_state)(inputString);
cout <<"Deposit Coin: ";
cin >> inputString;
cout << "You put in a "+inputString+"." << endl;
}
return 0;
}
和我的 bh:
#ifndef B_H
#define B_H
#include <string>
class b{
public:
void have0(std::string);
void have25(std::string);
void have50(std::string);
void have75(std::string);
void have100(std::string);
void have125(std::string);
void have150(std::string);
void have175(std::string);
void have200(std::string);
void have225(std::string);
void owe125(std::string);
void owe100(std::string);
void owe75(std::string);
void owe50(std::string);
void owe25(std::string);
};
#endif