初始化程序但不完整类型?

时间:2013-05-14 14:22:30

标签: c++

以下代码在编译时给出了2个错误

#include <iostream>
#include <fstream>
#include <cstring>
#include "Translator.h"

using namespace std;

void Dictionary::translate(char out_s[], const char s[])
{
    int i;
    char englishWord[MAX_NUM_WORDS][MAX_WORD_LEN];

    for (i=0;i < numEntries; i++)
    {
       if (strcmp(englishWord[i], s)==0)
           break;
    }

    if (i<numEntries)
       strcpy(out_s,elvishWord[i]);
}

char Translator::toElvish(const char elvish_line[],const char english_line[])
{
   int j=0;

    char temp_eng_words[2000][50];
    //char temp_elv_words[2000][50]; NOT SURE IF I NEED THIS

    std::string str = english_line;
    std:: istringstream stm(str);
    string word;
    while( stm >> word) // read white-space delimited tokens one by one
    {
        int k=0;
        strcpy (temp_eng_words[k],word.c_str());
        k++;
     }

     for (int i=0; i<2000;i++) // ERROR: out_s was not declared in this scope
     {
       Dictionary::translate (out_s,temp_eng_words[i]); // ERROR RELATES TO THIS LINE
      }
}

Translator::Translator(const char dictFileName[]) : dict(dictFileName)
{
    char englishWord[2000][50];
    char temp_eng_word[50];
    char temp_elv_word[50];
    char elvishWord[2000][50];
    int num_entries;

    fstream str;

    str.open(dictFileName, ios::in);
    int i;

    while (!str.fail())
    {
      for (i=0; i< 2000; i++)
      {
         str>> temp_eng_word;
         str>> temp_elv_word;
         strcpy(englishWord[i],temp_eng_word);
         strcpy(elvishWord[i],temp_elv_word);
      }

      num_entries = i;
 }

    str.close();

   }
} 

第一个是std::string istringstream stm(str);它说它变量有一个初始值但不完整的类型。如果我输入std::string istringstream stm(str);它表示在stmstm was not declared in the scope之前预期的初始化程序。

它还说out_s;未在此范围内声明Dictionary::translate (out_s,temp_eng_words[i])。我不明白为什么一个参数被识别而一个参数不被识别?

提前致谢。

3 个答案:

答案 0 :(得分:9)

您必须包含头文件:

#include <sstream>
#include <string>

如果您想使用stringstreamstring

同时

Dictionary::translate (out_s,temp_eng_words[i]);

如果out_s不是该班级的成员,您似乎忘记在out_s内使用toElvish之前定义 while( stm >> word) // read white-space delimited tokens one by one { int k=0; //^^Why do you initialize k everytime you read a word? strcpy (temp_eng_words[k],word.c_str()); k++; }

同时

{{1}}

答案 1 :(得分:1)

你只需要包含sstream

答案 2 :(得分:1)

如果您使用std::map,您的翻译会更简单。

#include <map>
#include <string>

// map[english word] returns the elvish word.
typedef std::map<std::string, std::string> Dictionary;  

// Define the dictionary
Dictionary english_to_elvish_dictionary;


std::string To_Elvish(const std::string& english_word)
{
    Dictionary::iterator    iter;
    std::string             elvish_word;
    iter = english_to_elvish_dictionary.find(english_word);
    if (iter != english_to_elvish_dictionary.end())
    {
        // English word is in dictionary, return the elvish equivalent.
        elvish_word = *iter;
    }
    return elvish_word;
}

上面的代码片段取代了大部分代码,减少了C字符串数组数组的问题。减少代码==减少问题。

要查看您遇到的问题列表,请搜索StackOverflow“[c ++] elvish english”。