Dev-cpp中定义对象总是不能通过编译
#include<iostream>#include<string>usingnamespacestd;classstring//声明类string{char*ptr;p...
#include<iostream>
#include<string>
using namespace std;
class string//声明类string
{
char*ptr;
public:
string(char*s)
{
ptr=new char[strlen(s)+1];
strcpy(ptr,s);
}
~string()
{delete ptr;}
void print()
{cout<<ptr<<endl;}
};
main()
{
string p1("chen");//定义类string的对象p1,这里就是报错处
{
string p2(" ");//定义类string的对象p2,同上
p2=p1;
cout<<"p2:";
p2.print();//这里也有错,说print不是p2的成员
}
cout<<"p1=";
p1.print();//同上
return 0;
}
所用版本为dev-cpp4.9.9.2
恳请不吝情赐教! 展开
#include<string>
using namespace std;
class string//声明类string
{
char*ptr;
public:
string(char*s)
{
ptr=new char[strlen(s)+1];
strcpy(ptr,s);
}
~string()
{delete ptr;}
void print()
{cout<<ptr<<endl;}
};
main()
{
string p1("chen");//定义类string的对象p1,这里就是报错处
{
string p2(" ");//定义类string的对象p2,同上
p2=p1;
cout<<"p2:";
p2.print();//这里也有错,说print不是p2的成员
}
cout<<"p1=";
p1.print();//同上
return 0;
}
所用版本为dev-cpp4.9.9.2
恳请不吝情赐教! 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询