| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 334 人关注过本帖
标题:求助(ye)
只看楼主 加入收藏
leafage
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-8-15
收藏
 问题点数:0 回复次数:1 
求助(ye)

#include "stdafx.h"
#include "stdlib.h"
#include "time.h"
#include "iostream.h"
#include "string.h"
#include<windows.h>
//#include "afx.h"
#include<list>
using namespace std;
struct data
{
long m_nAdr;
char m_cCharacter[300];
int len;
};

class listbuff
{
//CStringList stringlist;//用这个CStringList 也点不出它的成员函数出来
list<string> stringlist;
public:

void putlist(data &DT);
void printflist();
};
void listbuff::putlist (data &DT)
{
//stringlist.AddTail(DT.m_cCharacter);
stringlist//需要想stringlist里面加入DT这个结构里面的m_cCharacter成员
}
/*
void listbuff::printflist ()
{
CString str_output;
for(int t=0;t<stringlist.GetCount();t++)
{
str_output=str_output+stringlist.GetAt(stringlist.FindIndex(t));
}
cout<<str_output<<endl;
}*/


data QUZHI(char *l_pszSrc,int l_nSize)
{
data l_RV;
int l_nAdr=0;
Sleep(1000);
srand(time(0));

l_RV.m_nAdr=(long)&l_pszSrc[rand()%l_nSize];
int i=0;
int k=(rand()%l_nSize)+1;
l_RV.len=0;
for(i=0;i<k;i++)
{
l_RV.m_cCharacter[i]=*(char *)l_RV.m_nAdr++;
}
l_RV.m_cCharacter[i]='\0';
l_RV.len=strlen(l_RV.m_cCharacter );
return l_RV;
}

搜索更多相关主题的帖子: include public 
2007-08-15 09:47
swc
Rank: 3Rank: 3
等 级:论坛游民
威 望:6
帖 子:394
专家分:83
注 册:2006-4-7
收藏
得分:0 
怎么是C++?

实践、学习、再实践、再学习......
2007-08-15 11:22
快速回复:求助(ye)
数据加载中...
 
   



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

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