错误数组用作初始化程序,我不知道错误

时间:2013-10-13 15:46:41

标签: c++

失败的是在manejo.cpp类的构造函数中,错误是“manejo.cpp:3:16:error:array用作初始化程序”,我不知道这个错误在哪里。

to down附加了manejo.hpp类的源代码和manejo.cpp的实现,谢谢

#include "manejo.hpp"

manejo::manejo(){}
manejo::~manejo(){}

HPP

#ifndef __MANEJO_HPP
#define _MANEJO_HPP

#include <iostream>
#include <fstream>
#include <vector>
#include <string>

using namespace std;
using std::vector;
using std::string;

class manejo{

private:

     char cadena[128]="";
     vector <string> linea;
     long cantidadPD = 0;
     vector <string> palabras;
     int Creglas = 0;
     vector <string> reglas;
     long atoi(const char *str);


public:

     manejo();
     ~manejo();
     void EstablecerVariables();
     int StoInt (string numero);

};

#endif 

1 个答案:

答案 0 :(得分:5)

 char cadena[128]="";

在传统的C ++中是不合法的(它在C ++ 11中是合法的,但显然你没有使用它,因为否则你不会得到这个错误)。删除="",在构造函数中初始化数据成员,而不是在类中。 E.g。

manejo::manejo()
{
    cadena[0] = '\0';
    ...
}