这是一道十分经典的面试题,可以短时间内考查学生对C++的掌握是否全面,答案要包括C++类的多数知识,保证编写的String类可以完成赋值、拷贝、定义变量等功能。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
#include<iostream>
using namespace std;
class String
{
public :
String( const char *str=NULL);
String( const String &other);
~String( void );
String &operator =( const String &other);
private :
char *m_data;
};
String::String( const char *str)
{
cout<< "构造函数被调用了" <<endl;
if (str==NULL) //避免出现野指针,如String b;如果没有这句话,就会出现野
//指针
{
m_data= new char [1];
*m_data= '' /0 '' ;
}
else
{
int length= strlen (str);
m_data= new char [length+1];
strcpy (m_data,str);
}
}
String::~String( void )
{
delete m_data;
cout<< "析构函数被调用了" <<endl;
}
String::String( const String &other)
{
cout<< "赋值构造函被调用了" <<endl;
int length= strlen (other.m_data);
m_data= new char [length+1];
strcpy (m_data,other.m_data);
}
String &String::operator=( const String &other)
{
cout<< "赋值函数被调用了" <<endl;
if ( this ==&other) //自己拷贝自己就不用拷贝了
return * this ;
delete m_data; //删除被赋值对象中指针变量指向的前一个内存空间,避免
//内存泄漏
int length= strlen (other.m_data); //计算长度
m_data= new char [length+1]; //申请空间
strcpy (m_data,other.m_data); //拷贝
return * this ;
}
void main()
{
String b; //调用构造函数
String a( "Hello" ); //调用构造函数
String c( "World" ); //调用构造函数
String d=a; //调用赋值构造函数,因为是在d对象建立的过程中用a来初始化
d=c; //调用重载后的赋值函数
}
|
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://blog.csdn.net/u011421608/article/details/39972425