-3

我在 while 循环将数据从文本文件插入 stl 列表时遇到问题。你能帮我理解我的错误吗?非常感谢。错误是

server3.cpp: In function ‘int main(int, char**)’:
server3.cpp:43:11: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
server3.cpp:74:15: error: ‘class std::list<Record>’ has no member named ‘id’
server3.cpp:74:25: error: ‘class std::list<Record>’ has no member named ‘firstName’
server3.cpp:74:42: error: ‘class std::list<Record>’ has no member named ‘lastName’
server3.cpp:75:12: error: ‘class std::list<Record>’ has no member named ‘id’
server3.cpp:76:17: error: no match for ‘operator[]’ in ‘hashtable[hash]’
server3.cpp:76:50: error: expected primary-expression before ‘)’ token

代码如下:

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <string.h>
#include <vector>
#include <list>
#include <iostream>
#include <fstream>
using namespace std;

const int SIZE =100;/*size of hashTable*/
/*Struct representing the record*/
struct Record
{
     int id;
     char firstName[100];
     char lastName[100];
} rec;


/*Structure representing a single cell*/
class Cell
{
    std:: list<Record> recs;
    pthread_mutex_t lock;
};

/* The actual hash table */
std::list<Cell> hashtable;



int main (int argc, char * argv[])
{

    ifstream indata; /* indata is like a cin*/
        indata.open("fileName"); /* opens the file*/

    list <Record> rec;/*create an object*/
    int hash;
    while ( !indata.eof() ) /* keep reading until end-of-file*/
    { 
    indata>> rec.id >> rec.firstName >> rec.lastName;
    hash =rec.id % sizeof(hashtable);
    hashtable [hash].listofrecords.push_back (Record);

    }
     indata.close();

   return 0;    



}
4

3 回答 3

1

他们中的大多数人告诉你list没有没有成员,因为你试图做

indata>> rec.id >> rec.firstName >> rec.lastName;

butrec是一个列表,而不是一个Record.

hashtable[hash]

也是非法的(参见接口std::list, andRecord是一种类型,并且不能在容器中插入类型,只能插入对象:

...push_back (Record);

是非法的。

代码不仅有我们不时犯的偶尔错误,而且从根本上来说是有缺陷的。我建议您从一本好书开始学习 C++(如果您正在这样做)。

于 2012-12-11T00:39:45.597 回答
0

仅这条线至少存在三个主要问题。

 hashtable [hash].listofrecords.push_back (Record);
  1. std::list没有,operator[]所以你不能使用[hash]下标。
  2. 您的程序中没有任何地方定义过什么listofrecords意思。
  3. 您正在尝试push_back一种名为where 需要对象的类型。Record

请找到一本好的 C++ 书籍以开始使用:权威 C++ 书籍指南和列表

于 2012-12-11T00:45:55.890 回答
0

请注意,您正在创建记录集合,但这意味着您需要先访问集合的元素,然后才能访问其中包含的记录字段。

这是使用列表类型的参考: http ://www.cplusplus.com/reference/list/list/

于 2012-12-11T00:40:58.640 回答