目录
【1】友元 friend
1》概念
2》友元函数
#include <iostream>
using namespace std;
class Girl
{
private:
int age;
public:
Girl(int age):age(age){}
int get_age() const
{
cout << &age << endl;
return 18;
}
// 1. "声明"友元函数
friend void access_true_age(Girl&);
};
// 2. 定义友元函数
void access_true_age(Girl& g)
{
// 突破权限,直接操作Girl类的私有成员;
cout << &g.age << endl;
cout << "真实年龄:" << g.age << endl;
// 修改
g.age = 18;
cout << "修改后年龄:" << g.age << endl;
}
int main()
{
Girl g(45);
cout << g.get_age() << endl;
// 通过友元函数访问Girl的年龄
access_true_age(g);
return 0;
}
3》友元类
#include <iostream>
using namespace std;
class A
{
private:
string str = "A私有";
// “声明”友元类
friend class B;
};
class B
{
public:
void func(A& a)
{
// cout << this->str << endl; 错误:this是B对象不是A对象
cout << a.str << endl;//可以直接操作类A的私有成员
a.str = "我改了";
cout << a.str << endl;
}
};
int main()
{
A a;
// cout << a.str << endl; 错误,全局不能调用类A的私有成员
B b;
b.func(a);
return 0;
}
4》友元成员函数
#include <iostream>
using namespace std;
// 3. 因为第二步中用到了类A,提前声明类A
class A;
// 2. 编写类B,并真正声明友元成员函数
class B
{
public:
void func(A&);
};
class A
{
private:
string str = "A私有";
// 1. 确定友元的函数格式并“声明”
friend void B::func(A&);
};
// 4. 类外定义友元成员函数
void B::func(A & a)
{
// cout << this->str << endl; 错误:this是B对象不是A对象
cout << a.str << endl;
a.str = "我改了";
cout << a.str << endl;
}
int main()
{
A a;
// cout << a.str << endl; 错误
B b;
b.func(a);
return 0;
}
【2】运算符重载
1》概念
2》友元函数运算符重载
#include <iostream>
using namespace std;
/**
* @brief The Integer class 整数类
*/
class Integer
{
private:
int value;
public:
Integer(int value):value(value){}
int get_value() const
{
return value;
}
// 友元函数“声明”
friend Integer operator +(const Integer&,const Integer&);
friend Integer operator ++(Integer&); // 前置
friend Integer operator ++(Integer&,int); // 后置
};
//友元函数定义
Integer operator +(const Integer& i1,const Integer& i2)
{
return i1.value + i2.value; // 隐式调用构造函数
}
Integer operator ++(Integer& i)
{
return ++i.value; // 隐式调用构造函数
}
Integer operator ++(Integer& i,int)
{
return i.value++; // 隐式调用构造函数
}
int main()
{
Integer i1(1);
Integer i2(2);
Integer i3 = i1 + i2;
cout << i3.get_value() << endl; // 3
cout << (i1++).get_value() << endl; // 1
cout << (++i1).get_value() << endl; // 3
return 0;
}
3》成员函数运算符重载
#include <iostream>
using namespace std;
/**
* @brief The Integer class 整数类
*/
class Integer
{
private:
int value;
public:
Integer(int value):value(value){}
int get_value() const
{
return value;
}
// 声明成员函数
Integer operator +(const Integer&); // 双目
Integer operator ++(); // 前置
Integer operator ++(int) // 后置
{
return this->value++;
}
};
Integer Integer::operator +(const Integer& i)
{
return this->value + i.value;
}
Integer Integer::operator ++()
{
return ++this->value;
}
int main()
{
Integer i1(1);
Integer i2(2);
Integer i3 = i1 + i2;
cout << i3.get_value() << endl; // 3
cout << (i1++).get_value() << endl; // 1
cout << (++i1).get_value() << endl; // 3
return 0;
}
4》赋值运算符与类型转换运算符重载
#include <iostream>
using namespace std;
class Value
{
public:
int value = 0;
// 1. 构造函数
// 2. 拷贝构造
// 3. 析构函数
// 4. 赋值运算符重载
// 编译器自动添加:
Value& operator =(const Value& v)
{
value = v.value;
return *this;
}
};
int main()
{
Value v; // 构造函数
Value v2(v); // 拷贝构造
Value v3 = v2; // 拷贝构造
v.value = 1;
v3 = v; // 赋值运算符
cout << v3.value << endl; // 1
return 0;
}
#include <iostream>
using namespace std;
class Value
{
private:
int value;
public:
Value(int value):value(value){}
int get_value() const
{
return value;
}
// 类型转换运算符重载函数
operator int()//value转换为int类型
{
return value;
}
};
int main()
{
// int → Value
Value v = 1; // 隐式构造
// Value → int
int i = v; // 类型转换运算符重载函数
cout << i << endl; // 1
return 0;
}
5》注意事项
【3】String 字符串类
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
string s; // 生成一个空字符串
cout << "判断字符串是否为空:" << s.empty() << endl; // 1
string s1 = "Thursday"; // 隐式调用构造函数,参数const char*
string s2("Thursday"); // 显式调用上面的构造函数
cout << "判断是s1是否等于s2:" << (s1 == s2) << endl; // 1
string s3 = s1; // 隐式调用拷贝构造
string s4(s2); // 显式调用拷贝构造
cout << "判断是s1是否等于s2:" << (s3 == s4) << endl; // 1
s = s4; // 赋值运算符
cout << s << endl; // "Thursday"
// 参数1:const char* 原字符串
// 参数2:保留几个字符
string s5("ABCDEFG",2);//保留前两个字符
cout << s5 << endl; // AB
s = "ABCDEFG";
// 参数1:string 原字符串
// 参数2:不保留前几个字符
string s6(s,2);
cout << s6 << endl; // CDEFG
// 参数1:字符串长度
// 参数2:字符内容
string s7(6,'A');
cout << s7 << endl; // AAAAAA
// 交换
swap(s6,s7);
cout << s6 << " " << s7 << endl; // AAAAAA CDEFG
s = s6+s7; // 拼接
cout << s << endl; // AAAAAACDEFG
// 向后追加
s.append("123");
cout << s << endl; // AAAAAACDEFG123
// 向后追加单字符
s.push_back('%'); // AAAAAACDEFG123%
// 插入
// 参数1:插入的位置
// 参数2:插入的内容
s.insert(1,"222"); // A222AAAAACDEFG123%
// 参数1:删除的起始位置
// 参数2:删除的字符数
s.erase(4,10);
cout << s << endl; // A222123%
// 参数1:替换的起始位置
// 参数2:替换的字符数
// 参数3:替换的内容
s.replace(0,3,"******");
cout << s << endl; // ******2123%
s.clear(); // 清空
cout << s.length() << endl; // 0
char c[20];
s = "1234567890";
// 参数1:拷贝的目标
// 参数2:拷贝的字符数
// 参数3:拷贝的起始位置
s.copy(c,3,1);
cout << c << endl; // 234
// C → C++ 直接赋值即可
// char* → string
char* c1 = "Tom";
char c2[] = "Jerry";
string sc1 = c1;
string sc2 = c2;
cout << sc1 << "&" << sc2 << endl; // Tom&Jerry
// C++ → C
// string → char[]
s = "abcd";
char ch[10];
strcpy(ch,s.c_str()); // c_str()返回值的const char*不稳定
cout << ch << endl;
return 0;
}