关于假定未声明的函数的 C++ 编译器错误

标签 c++ compiler-errors shunting-yard

我目前正在编写一个基本程序来评估数学表达式,稍后我将在遗传编程中使用它来确定表达式系统的最佳解决方案。我的编译器一直在提示,但我几乎可以肯定我做对了一切。

错误:

C:\Users\Baelic Edeyn\Desktop\Project\Equation\Shunting yard\Better>make  
g++ -g -c Shunt.cpp  
g++ -g -c main.cpp  
main.cpp: In function 'int main()':  
main.cpp:18:19: error: 'shuntingYard' was not declared in this scope  
make: *** [main.o] Error 1

我的生成文件:

main: Shunt.o main.o  
    g++ -g Shunt.o main.o -o main  
main.o:main.cpp  
    g++ -g -c main.cpp  
Shunt.o:Shunt.cpp  
    g++ -g -c Shunt.cpp

我的主要内容:

#include "Shunt.h"
#include <iostream>
#include <string>

using namespace std;

int main()
{
    string expr = "3+ 47 *2/(1-5)^2^3";
    string expr1 = "a+b";
    string expr2 = "(a+b)";
    string expr3 = "a+b*!3";
    string expr4 = "(a+b)*!3";

    cout << "expression" << "   " << "postfix" << endl;
    cout << expr << "   ";
    shuntingYard(expr);
    cout << expr << endl;
    cout << expr1 << "      ";
    ...
    return 0;

我的头文件:

#ifndef SHUNT_H
#define SHUNT_H

#include <string>

using namespace std;

class Shunt
{
    public:
        int precedence(char);
        void shuntingYard(string &expr);
        bool isFunction(string);
        bool isOperator(char);
        bool isLeftAssociative(char);
        bool isNum(char);

    private:    

};

#endif

我的实现文件:

#include "Shunt.h"

using namespace std;

void Shunt::shuntingYard(string &expr)
{
    ...
}

请帮帮我,我差点把笔记本电脑撞到墙上。

最佳答案

shuntingYard() 是一个非static 成员函数:您需要一个 Shunt 实例来调用它:

Shunt s;
s.shuntingYard(expr);

另一种方法是使成员函数 static 不需要 Shunt 的实例并且可以被调用:

Shunt::shuntingYard();

鉴于您认为可以在没有实例的情况下调用 shuntingYard() 使其成为 static 似乎是更合适的操作。或者,如果 Shunt 用于保存松散相关的函数,这些函数不共享状态且不代表特定抽象的功能,则使用命名空间而不是类可能更合适。

关于关于假定未声明的函数的 C++ 编译器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12693148/

相关文章:

c# - 用户定义的编译器警告或C#错误

java - 调车场算法的问题

algorithm - 将中缀转换为反向波兰表示法(后缀)的方法

c++ - 如何在 C++ 中可移植地计算 sha1 哈希?

c++ - 使用 boost iostream 每个连接发送多个文件

c++ - 使用按位运算符的算术运算符

c++ - _DEBUG 和 LLVM 5.0 C++ : Preprocessor Expected value in expression

compilation - 编译器中的错误检测

c++ - 流出扩展 ASCII

javascript - 带不必要括号的调车场算法