| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 9209 人关注过本帖
标题:C++ 如何从txt文件中读取数据,然后保存在类的数组中?
只看楼主 加入收藏
syahkrin
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-12-29
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:3 
C++ 如何从txt文件中读取数据,然后保存在类的数组中?
比如txt叫"name.txt",然后内容是:
小明 111 男 FIT
小丽 212 女 FOM
小王 516 男 FOE
小张 426 男 FCM
声明一个类,然后将这些数据保存在类的private成员中。
类的private成员有4 个;
string name;
int id;
char gender;
string faculty;

#include <string>
#include <iostream>
#include <algorithm>
#include <vector>
#include <fstream>
using namespace std;

class Student
{
    string name;
    string gender;
    string faculty;
    int id;
   
    public:
    Student(string name, int id, string gender, string faculty);
    string getname(){return name;};
    string getgender(){return gender;};
    string getfaculty(){return faculty;};
    int getid(){return id;};
   
};

int main()
{
        ifstream in("name.txt");
        string name;
        string faculty;
        string gender;
        int id;
        vector<string> vect;
        while(getline(in, name, '\n'))
        vect.push_back(name.substr(0, name.find(' ')));
        vector<string>::iterator it=unique(vect.begin(), vect.end());
        copy(vect.begin(), it, ostream_iterator<string>(cout, "\n"));
        return 0;
}

应该要怎样继续??


搜索更多相关主题的帖子: class 声明 private include public 
2011-12-29 21:42
rjsp
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:528
帖 子:9025
专家分:54030
注 册:2011-1-18
收藏
得分:10 
程序代码:
#include <string>
#include <iostream>

class Student
{
    friend std::istream& operator>>( std::istream& is, Student& s );
    friend std::ostream& operator<<( std::ostream& os, const Student& s );
public:
    Student() : id(-1)
    {
    }
    Student( const std::string& name_, int id_, char gender_, const std::string& faculty_ ) : name(name_), id(id_), gender(gender_), faculty(faculty_)
    {
    }
    std::string getname() const { return name; }
    int getid() const { return id; }
    char getgender() const { return gender; }
    std::string getfaculty() const { return faculty; }

private:
    std::string name;
    int id;
    char gender;
    std::string faculty;
};

std::istream& operator>>( std::istream& is, Student& s )
{
    std::string name;
    int id;
    std::string gender;
    std::string faculty;

    is >> name >> id >> gender >> faculty;
    if( is )
    {
        s.name = name;
        s.id = id;
        s.gender = (gender==""?'M':'F');
        s.faculty = faculty;
    }
    return is;
}

std::ostream& operator<<( std::ostream& os, const Student& s )
{
    os << s.name << ' '
        << s.id << ' '
        << (s.gender=='M'?"":"") << ' '
        << s.faculty;
    return os;
}

#include <algorithm>
#include <vector>
#include <fstream>
#include <iterator>
using namespace std;

int main()
{
    ifstream in("name.txt");
    if( in )
    {
        vector<Student> Students;
        copy( istream_iterator<Student>(in), istream_iterator<Student>(), back_inserter(Students) );

        copy( Students.begin(), Students.end(), ostream_iterator<Student>(cout,"\n") );
    }
    return 0;
}
2011-12-30 11:50
BianChengNan
Rank: 8Rank: 8
等 级:贵宾
威 望:13
帖 子:302
专家分:972
注 册:2011-11-30
收藏
得分:10 
以下是引用syahkrin在2011-12-29 21:42:42的发言:

比如txt叫"name.txt",然后内容是:
小明 111 男 FIT
小丽 212 女 FOM
小王 516 男 FOE
小张 426 男 FCM
声明一个类,然后将这些数据保存在类的private成员中。
类的private成员有4 个;
string name;
int id;
char gender;
string faculty;

#include
#include
#include
#include
#include
using namespace std;

class Student
{
    string name;
    string gender;
    string faculty;
    int id;
   
    public:
    Student(string name, int id, string gender, string faculty);
    string getname(){return name;};
    string getgender(){return gender;};
    string getfaculty(){return faculty;};
    int getid(){return id;};
   
};

int main()
{
        ifstream in("name.txt");
        string name;
        string faculty;
        string gender;
        int id;
        vector vect;
        while(getline(in, name, '\n'))
        vect.push_back(name.substr(0, name.find(' ')));
        vector::iterator it=unique(vect.begin(), vect.end());
        copy(vect.begin(), it, ostream_iterator(cout, "\n"));
        return 0;
}

应该要怎样继续??
先按行把文件内容读到vector中,然后解析vector的内容赋值到你想要赋值的地方

我的群:149544757 C/C++/Assembly 喜欢交流的朋友进,进群请写消息
2011-12-30 12:49
syahkrin
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-12-29
收藏
得分:0 
回复 3楼 BianChengNan
试过了,还是不行。。只能显示数据,不能够使用数据。。

2011-12-30 15:15
快速回复:C++ 如何从txt文件中读取数据,然后保存在类的数组中?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.052458 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved