我收到“错误:在此范围内未声明字符串”

时间:2019-06-16 05:56:45

标签: c++ string function boolean

我在bool函数内部声明了一个字符串参数。当我运行代码构建消息时,显示“字符串未在作用域中声明”。

我在代码块上尝试了它。

bool isOkay(char open,char close);
bool isCheck(string exp);

bool isCheck(string exp){
    stack<char>s;
    int i;

    for(i=0;i<exp.length();i++){
        if(exp[i] == '(' || exp[i] == '{' || exp[i] == '['){
            s.push(exp[i]);
        }
        else if(exp[i] == ')' || exp[i] == '}' || exp[i] == ']'){
            if(s.empty() || !isOkay(s.top(),exp[i])){
                return false;
            }
            else{
                s.pop();
            }
        }
    }
    return s.empty() ? true : false;
}

bool isOkay(char open , char close){
    if(open == '(' && close== ')') return true;
     else if(open == '{' && close== '}') return true;
      else if(open == '[' && close== ']') return true;

    return false;
}

错误消息是“未在范围中声明字符串”

1 个答案:

答案 0 :(得分:-2)

您没有在程序中使用命名空间std; 添加 。使用名称空间std; 添加 后,我在代码块中成功编译了该代码。

这是完整的代码:

#include <iostream>
#include <string>
#include <stack>

using namespace std; // May be you didn't write this line.

bool isOkay(char open,char close);
bool isCheck(string exp);

int main() {
    // main func code goes here

    return 0;
}

bool isCheck(string exp){
    stack<char>s;
    int i;

    for(i=0;i<exp.length();i++){
        if(exp[i] == '(' || exp[i] == '{' || exp[i] == '['){
            s.push(exp[i]);
        }
        else if(exp[i] == ')' || exp[i] == '}' || exp[i] == ']'){
            if(s.empty() || !isOkay(s.top(),exp[i])){
                return false;
            }
            else{
                s.pop();
            }
        }
    }
    return s.empty() ? true : false;
}

bool isOkay(char open , char close){
    if(open == '(' && close == ')') return true;
     else if(open == '{' && close == '}') return true;
      else if(open == '[' && close == ']') return true;

    return false;
}