我在 translate.h 文件中有以下代码
class Dictionary
{
public:
Dictionary(const char dictFileName[]);
void translate(char out_s[], const char s[]);
我在我的 translate.cpp 文件中调用该函数,如下所示
for (int i=0; i<2000;i++)
{
Dictionary:: translate (out_s[],temp_eng_words[i]);
}
这给了我一个错误“']'标记之前的预期主要表达式”。我不明白出了什么问题,如果可以在上面的代码段中找到问题,我决定不发布整个代码。
有任何想法吗??
我已经在没有 [] for out_s 的情况下尝试过它,但它给了我一个错误“无法在没有对象的情况下调用成员函数 void dictionary::translate (char*, const char *)”。我将发布整个代码,以便更清楚地说明问题可能是什么。
Translator.cpp
#include <iostream>
#include <fstream>
#include <sstream>
#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;
int k=0;
char temp_eng_words[2000][50];
char out_s;
//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
{
strcpy (temp_eng_words[k],word.c_str());
k++;
}
for (int i=0; i<2000;i++)
{
Dictionary:: translate (out_s,temp_eng_words[i]); // ERROR RELATES TO THIS LINE - cannot call member function like this. error - expected primary expression
// before ] if written out_s[].
}
}
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();
}
}
翻译器.h
const int MAX_NUM_WORDS=2000;
const int MAX_WORD_LEN=50;
class Dictionary
{
public:
Dictionary(const char dictFileName[]);
void translate(char out_s[], const char s[]); // s represents a wor out_s, the translated word
private:
char englishWord[MAX_NUM_WORDS][MAX_WORD_LEN];
char elvishWord[MAX_NUM_WORDS][MAX_WORD_LEN];
int numEntries;
};
class Translator
{
public:
Translator(const char s[]);
char toElvish(const char out_s[],const char s[]);
char toEnglish(char out_s[], const char s[]);
private:
Dictionary dict;
};