| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1848 人关注过本帖
标题:help 关于容器问题
只看楼主 加入收藏
wonderfulday
Rank: 1
等 级:新手上路
帖 子:97
专家分:0
注 册:2004-7-28
收藏
得分:0 

你说得也对

我只是一边学,一边想。。。想到什么不明边拿上来问


2004-12-12 22:45
三少爷
Rank: 1
等 级:新手上路
帖 子:192
专家分:0
注 册:2004-4-29
收藏
得分:0 

楼主,我翻遍了厚厚的STL书籍好几本,都没见有可自定义类型的这种用法,

list <myclass> rdMaster;

可能偶盲人摸象了,但自己肤浅地尝试了一下也是不行


2004-12-13 23:20
wonderfulday
Rank: 1
等 级:新手上路
帖 子:97
专家分:0
注 册:2004-7-28
收藏
得分:0 

//////////////print.h

#include <iostream> #include <vector> #include <string>

using namespace std;

class Text{ int NO; int age; public: void initText(int NOs, int ages){NO=NOs;age=ages;} int get_NO(){return NO;} int get_age(){return age;} };

///////////////////////////////////transform.cpp

#include <iostream> #include <vector> #include <set> #include <algorithm> #include "print.h"

using namespace std;

main(){

Text tex ; tex.initText(1,24); vector<Text> temp; temp.push_back(tex); tex.initText(3,23); temp.push_back(tex); tex.initText(3,23); temp.push_back(tex); cout<<temp[0].get_NO()<<endl; cout<<temp.size()<<endl;

}


2004-12-14 12:15
wonderfulday
Rank: 1
等 级:新手上路
帖 子:97
专家分:0
注 册:2004-7-28
收藏
得分:0 

我想是可以的,只是不知道如何运用容器 迭代器 和 算法


2004-12-14 12:19
快速回复:help 关于容器问题
数据加载中...
 
   



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

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