#include "string.h"
class A
{
public:
A(int,int);
~A();
bool panduan(char*)const;
void Add(char*);
void display();
private:
int m;
//static int m;
char**s;
int _count;
};
//int A::m=0;
A::A(int count,int m1)
{
m=m1;
_count=count;
s=new char*[_count];
}
A::~A()
{
for(int i=0;i<_count;i++)
delete s[i];
delete[] s;
}
bool A::panduan(char*p)const
{
bool h=false;
for(int k=0;k<_count;k++)
{
if(s[k]==p)
{
h=true;
break;
}
}
return h;
}
void A::Add(char*p)
{
if(!panduan(p))
{
if(m<=_count)
{
s[m]=new char[strlen(p)];
strcpy(s[m],p);
m++;
}
else
cout<<"已经满了"<<endl;
}
}
void A::display()
{
for(int j=0;j<_count;j++)
cout<<s[j]<<endl;
}
这是 头文件
#include <iostream.h>
#include "tou.h"
int main()
{
A a(3,0);
a.Add("abcd");
a.Add("lp");
a.Add("qqqqoooo");
//a.Add("ttt");
a.display();
return 0;
}
当运行时 可以输出但是 跳出来一个窗口说什么