0

我在 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;

};
4

4 回答 4

2

问题过去了out_s[],试试这个:

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

如果out_s是一个数组,那么传递它就[]足够了。

于 2013-05-18T12:59:04.840 回答
1

尝试

for (int i=0; i<2000;i++) 
{
  Dictionary:: translate (out_s,temp_eng_words[i]); 
}
于 2013-05-18T12:59:33.717 回答
1

编译器期望您的实际参数中有一个数组索引out_s[]

你是什​​么意思out_s[]?如果out_s是 的数组char或指向 的指针char,则通过out_s(不带括号)。

于 2013-05-18T12:58:25.370 回答
1

首先请注意,函数签名 likevoid translate(char out_s[], const char s[])实际上等同于void translate(char* out_s, const char* s).

您试图传递的论点之一是out_s[]- 这是无效的。您要么需要传递数组本身out_s(将进行数组到指针的转换),要么需要传递它的特定元素out_s[i]

从我站的地方看,你似乎想过去out_s

于 2013-05-18T12:58:58.560 回答