类的基本思想是数据抽象和封装,数据抽象是一种依赖于接口和实现分离的编程技术。封装实现了类的接口和实现额分离,封装后的类隐藏了它的实现细节。
类要想实现数据抽象和封装,需要首先定义一个抽象数据类型。
C 语言中没有类的概念,但是有 struct 结构体供我们定义抽象的数据类型,但是本身不支持封装、以及类方法。
#include <iostream>
#include <cstring>
using namespace std;
struct Person
{
char name[512];
unsigned age;
};
int main(int argc, char **argv)
{
;
Person person<< sizeof(person) << endl; // 512+4=516
cout const char *name = "gaowanlu";
(person.name, name);
strcpy.age = 19;
person<< person.name << endl; // gaowanlu
cout << person.age << endl; // 19
cout return 0;
}
如果结构体大小是定长时,结构体的实例内部内存是连续的,那么则会有许多的用途,比如串口协议等。
//example2.cpp
#include <iostream>
#include <cstring>
using namespace std;
struct Person
{
char name[512];
unsigned age;
};
int main(int argc, char **argv)
{
;
Person person.age = 999;
personchar *store = new char[sizeof(person)];
(store, &person, sizeof(person));
memcpy*ptr = (Person *)store;
Person << ptr->age << endl; // 999
cout delete store;
//有点像对象的序列化是吧,在理想情况下可以通过传输介质传输内存中的二进制数据,进而达成一定的用户协议
return 0;
}
//example3.cpp
#include <iostream>
#include <string>
using namespace std;
struct Person
{
;
string nameunsigned age;
//定义在类内部的函数为隐式的inline函数
void print() const
{
// this是一个常量指针,不允许我们改变this中保存的地址,this永远指向对象实例本身
std::cout << "name " << name << " age " << this->age << endl;
}
int getAge(); //在类的内部声明
};
//外部定义类的方法
int Person::getAge()
{
return this->age;
}
int main(int argc, char **argv)
{
; //定义Person类的对象实例
Person person.age = 19;
person.name = "gaowanlu";
person.print(); // name gaowanlu age 19
person<< person.getAge() << endl; // 19
cout return 0;
}
this 的数据类型就是,Person*,他是一个相应类数据类型的常量指针
我们发现刚刚的成员函数的代码块前怎么加了 const 呢,有什么作用呢?
这里的 const 的作用是修改隐式 this 指针的类型,
简单点说就是当对象是 const 的时候,只能调用对象的 const 成员函数,如果成员函数为 const 成员函数,但是在函数内修改非 mutable 成员,则会编译不通过
//example4.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
void setAge(int age) const
{
// 即const Person *this
// this->print();//不能通过常量的指针调用函数
// this->age = age;//不能修改对象的属性
}
void print()
{
<< "person" << endl;
cout }
};
int main(int argc, char **argv)
{
const Person person;
const Person *ptr = &person;
// ptr->print(); //同理类似const Person*this 不允许调用方法
// ptr->age = 23;//不允许修改属性
return 0;
}
类本身就是一个作用域,编译器先编译成员的声明、然后到成员函数体,所以成员函数体可以随意使用类中的其他成员而无需在意它们出现的次序。
//example5.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
void print() const;
};
void Person::print() const
{
<< this->age << endl;
cout }
int main(int argc, char **argv)
{
;
Person person.age = 666;
person.print(); // 666
personreturn 0;
}
对于类的方法,也可以返回其对象本身的 this
//example6.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
*add()
Person {
++(*this).age;//this的解引用
return this;
}
};
int main(int argc, char **argv)
{
;
Person person.age = 1;
person.add()->add()->add(); //链式调用
person<< person.age << endl; // 4
cout return 0;
}
即定义普通函数,但其使用类对象做形参或者做返回值
//example7.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
};
//按值传递
(Person person)
Person add{
.age++;
personreturn person;
}
//按引用传递
&sub(Person &person)
Person {
.age--;
personreturn person;
}
int main(int argc, char **argv)
{
;
Person person.age = 0;
person= add(person);
Person person1 << person.age << " " << person1.age << endl; // 0 1
cout (person1);
sub<< person1.age << endl; // 0
cout return 0;
}
类的特殊成员函数在没有自定义的情况下,编译器会为类添加默认的构造函数
1.默认构造函数
2.析构函数
3.复制构造函数
4.复制赋值运算符函数
5.移动构造函数(C++11新增)
6.移动赋值运算符函数(C++11新增)
构造函数在创建类的对象实例时被执行
当我们没有定义构造函数时,会使用默认的构造函数,默认构造函数无需参数,也就是说只有当类没有声明任何构造函数时,编译器才会自动地生成默认构造函数
//example8.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
() = default; //保留默认构造函数
Person(int age)//在类内部定义地函数是隐式的inline函数
Person{
this->age = age;
}
};
int main(int argc, char **argv)
{
; //使用默认构造函数
Person person1(19);
Person person2<< person2.age << endl; // 19
cout return 0;
}
首先传入实参到构造函数、执行属性初始化列表,然后再执行构造函数体
//example9.cpp
#include <iostream>
#include <string>
using namespace std;
struct Person {
;
string nameint age;
() = default;
Person(string name);//定义处不用写初始化列表
Person//因为声明是给别人看的
};
//初始化列表与定义有关,而不用给别人声明
//通常将初始化列表写在定义,写在声明处会编译出错
::Person(string name) : name(name), age(20)
Person{
<< this->name << " " << this->age << endl;
cout }
int main(int argc, char** argv)
{
("gaowanlu"); // gaowanlu 20
Person person<< person.age << endl; // 20
cout return 0;
}
与普通的成员函数的操作没什么区别
//example10.cpp
#include <iostream>
#include <string>
using namespace std;
struct Person
{
;
string nameint age;
();
Person//初始化属性列表
(string name);
Person};
::Person() = default;
Person
::Person(string name) : name(name),
Person(20)
age{
<< this->name << " " << this->age << endl;
cout }
int main(int argc, char **argv)
{
("gaowanlu"); // gaowanlu 20
Person person<< person.age << endl; // 20
cout return 0;
}
除了构造阶段,类还需要其他的控制如拷贝、赋值、销毁对象时的行为,在后面的还有详细的相关学习
//example11.cpp
#include <iostream>
#include <cstring>
using namespace std;
struct String
{
char *ptr;
()
String{
this->ptr = new char[512];
}
void set(const char *str)
{
(ptr, str);
strcpy}
~String()
{
if (this->ptr)
{
<< "delete String ptr memory\n";
cout delete this->ptr; //释放内存
}
}
};
void func()
{
;//当栈内存被释放时 析构函数同样会被触发
String str}
int main(int argc, char **argv)
{
*str = new String();
String ->set("hello");
str<< str->ptr << endl; // hello
cout delete str; // delete String ptr memory
(); // delete String ptr memory
funcreturn 0;
}
目前位置,我们并没有方法禁止某些情况不能访问到类内部的某些方法或者属性。C++语言中,我们使用访问说明符加强类的封装性。
//example12.cpp
#include <iostream>
using namespace std;
struct Person
{
private:
int age;
public:
() = default;
Person(int age)
Person{
this->age = age;
}
int getAge()
{
return this->age;
}
void setAge(int age)
{
this->age = age;
}
};
int main(int argc, char **argv)
{
(19);
Person person.setAge(20);
person<< person.getAge() << endl; // 20
cout // person.age;//error 访问不到
return 0;
}
不常遇见的有趣例子:为什么有两个同类型的对象,一个对象的方法内可以访问另一个对象的私有成员
#include <iostream>
using namespace std;
class A;
class A
{
private:
int n = 199;
public:
void foo(A& a)
{
<< a.n << endl;
cout .func();
a}
private:
void func()
{
<< "hello" << endl;
cout }
};
int main()
{
;
A a;
A b.foo(b);
areturn 0;
}
因为 foo 是 A::foo
所以 A::foo
可以访问 A
的所有成员。
我们一直在使用 struct 也就是结构体,但是我们将其称为类,有点奇怪,其实 C++支持关键词 struct,而支持 struct 是因为要兼容 C 代码
二者的区别是,如果没有声明 private 或者 public,class 默认为 private 而 struct 默认为 public
//example13.cpp
#include <iostream>
using namespace std;
class Dog
{
int age;
public:
void setAge(int age)
{
this->age = age;
}
int getAge()
{
return this->age;
}
};
struct Cat
{
int age;
};
int main(int argc, char **argv)
{
;
Dog dog;
Cat cat// dog.age;//访问不到
.age = 1;
cat.setAge(1);
dog<< cat.age << endl; // 1
cout << dog.getAge() << endl; // 1
cout return 0;
}
有些函数并不是类的成员方法,但是我们仍然想要允许它访问类的私有成员,这种情况我们可以将这个函数定义为类的友元函数。
//example14.cpp
#include <iostream>
using namespace std;
class Dog
{
int age;
friend void printDog(Dog &dog);
public:
auto setAge(int age) -> void
{
this->age = age;
}
auto getAge() -> int
{
return this->age;
}
};
void printDog(Dog &dog)
{
<< dog.age << endl; //可以访问私有成员
cout }
int main(int argc, char **argv)
{
;
Dog dog.setAge(1);
dog// dog.age;
(dog); // 1
printDogreturn 0;
}
一般来说、最好在类定义开始或结束前的位置集中声明友元。
在类的内部可以使用 typedef 与 using 以至于只在类内有效,对外不隐藏细节
//example15.cpp
#include <iostream>
#include <string>
#include <vector>
using namespace std;
class Person
{
public:
typedef std::string String;
using StrSize = std::string::size_type;
void setName(String name)
{
this->name = name;
this->name_size = name.size();
}
;
StrSize name_size// mList list();//error mList is private
// void printList(mList list);//error
private:
using mList = std::vector<int>;
;
String name;
mList list};
int main(int argc, char **argv)
{
;
Person person.setName("gaowanlu");
person<< person.name_size << endl; // 8
cout // String str = "";//error: 'String' was not declared in this scope
::String str = "name";
Person<< str << endl;
cout return 0;
}
共有三种情况
//example16.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
public:
(int age, string name) : age(age), name(name)
Person{
}
() const //隐式内联
string getName{
return this->name;
}
inline int getAge() //显式内联
{
return this->age;
}
void setAge(int age); //可在定义出指定内联
private:
int age;
;
string name};
//定义时指定为内联
inline void Person::setAge(int age)
{
this->age = age;
}
int main(int argc, char **argv)
{
(18, "gaowanlu");
Person person<< person.getName() << endl; // gaowanlu
cout << person.getAge() << endl; // 18
cout .setAge(19);
person<< person.getAge() << endl; // 19
cout return 0;
}
虽然不需要在声明和定义处同时说明 inline,但是那样是合法的,不过最好只在类的外部定义的地方说明 inline,这样使得其更加容易理解。
和函数的从在一样,类的方法也可以进行重载
其概念与函数的重载基本相同,如参数与类型的区别、匹配过程等
//example17.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
private:
int age;
;
string name
public:
void set(int age, string name);
void set(string name, int age);
int getAge()
{
return this->age;
}
()
string getName{
return this->name;
}
void print()
{
<< "age " << age << " name " << name << endl;
cout }
};
void Person::set(int age, string name)
{
this->age = age;
this->name = name;
}
void Person::set(string name, int age)
{
this->set(age, name);
}
int main(int argc, char **argv)
{
;
Person person.set(string("gaowanlu"), 18);
person.print(); // age 18 name gaowanlu
person.set(19, string("gaowanlu"));
person.print(); // age 19 name gaowanlu
personreturn 0;
}
对于结构体而言,如果一个结构体变量为 const,则它的属性也是不可变的
//example18.cpp
#include <iostream>
#include <string>
using namespace std;
struct Person
{
int age;
;
string name};
int main(int argc, char **argv)
{
;
Person person.age = 19; // mutable
personconst Person he;
// he.age = 19; // error: assignment of member 'Person::age' in read-only object
return 0;
}
但是有些情况下,即使结构体变量是 const
的,但是我们想允许更改其某些内部属性、则使用 mutable
要注意的是 cosnt 对象实例不能访问非 const 方法
//example19.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
private:
mutable int age; // mutable属性必须被初始化
public:
// mutable int age;
() = default;
Person(int age) : age(age) {}
Person;
string namevoid setAge(int _age) const; // const成员函数也可以改变mutable成员值
int getAge() const
{
return this->age;
}
int addAge() const
{
this->age++;
return this->age;
}
};
void Person::setAge(int _age) const
{
= _age;
age }
int main(int argc, char **argv)
{
;
Person person.setAge(19);
personconst Person she(19); // const实例不允许访问非const方法
// mutable
.setAge(19);
she<< person.getAge() << " " << she.getAge() << endl;
cout << she.addAge() << endl; // 20
cout return 0;
}
在 C++11
以前,对于非静态数据成员初始化需要用到初始化列表,但是当数据成员多或者构造函数多的时候,就会成为头痛的问题,并产生了很多冗余的代码。
C++11
标准,可以在声明非静态数据成员的同时直接使用=
或{}
初始化,在
C++11
之前只有类型为整型或者枚举类型的常量静态数据成员才会有这种待遇,但是不是让你记住
C++11 以前,而是让你记住
C++11,切记,因为记住哪一个版本特性没有用,会用才是重点。
重要的规则:在初始化的优先级上,初始化列表对数据成员的初始化总是优先于声明时默认初始化。
#include <iostream>
#include <vector>
#include <string>
using namespace std;
// C++ 11
class Person
{
public:
(const int &age) : age(age)
Person{
}
(const string &name) : name(name)
Person{
}
(initializer_list<string> &&parents) : parents(parents)
Person{
}
&operator<<(ostream &out)
ostream {
<< age << " " << name << " " << parents.size() << endl;
out return out;
}
int age = 19;
= "gaowanlu";
string name <string> parents = {"father", "mother"};
vectorint num{999};
};
int main(int argc, char **argv)
{
(1);
Person person1.operator<<(cout);
person1("hello");
Person person2.operator<<(cout);
person2({"hello", "world"});
Person person3.operator<<(cout);
person3return 0;
}
/*
1 gaowanlu 2
19 hello 2
19 gaowanlu 2
*/
关于 this 的返回,常用的有返回*this,this
//example21.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
public:
int age;
()
Person copy{
return *this;
}
&self()
Person {
return *this;
}
*ptr()
Person {
return this;
}
};
int main(int argc, char **argv)
{
;
Person person.age = 19;
person= person.copy();
Person person1 .age = 18;
person1<< person.age << " " << person1.age << endl; // 19 18
cout &person_ = person.self();
Person person_.age = 18;
<< person.age << endl; // 18
cout *ptr = person.ptr();
Person if (ptr == &person_)
{
<< "get ptr success" << endl; // get ptr success
cout }
}
从 const 成员函数返回*this,则返回的新对象是 const 的
//example22.cpp
#include <iostream>
using namespace std;
class Person
{
public:
mutable int age = 0;
() const
Person getConstCopy{
return *this;
}
const Person &getConstSelf() const
{
return *this;
}
};
int main(int argc, char **argv)
{
;
Person person.age = 19;
person= person.getConstCopy(); //相当于一个const的对象赋值给person1
Person person1
const Person person2; // const对象 其内部的属性必须全部被初始化
= person2.getConstCopy();
Person person3 << person3.age << endl; // 0
cout .age = 19;
person3
const Person &self = person2.getConstSelf();
.age = 18;
self<< person2.age << endl; // 18
cout
// Person &person4 = person1.getConstSelf();
// binding reference of type 'Person&' to 'const Person' discards qualifiers
return 0;
}
当对象是 const 时使用 const 方法、非 const 对象使用非 const 方法
//example23.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
public:
(int age) : age(age) {}
Personconst Person &print() const
{
<< age << " const Person &print() const" << endl;
cout return *this;
}
&print()
Person {
<< age << " Person &print()" << endl;
cout return *this;
}
private:
int age;
};
int main(int argc, char **argv)
{
(1);
Person person1.print(); // 1 Person &print()
person1.print().print(); // 1 Person &print() 1 Person &print()
person1const Person person2 = person1;
.print(); // 1 const Person &print() const
person2.print().print(); // 1 const Person &print() const 1 const Person &print() const
person2return 0;
}
不同的类对象之间是不能直接相互赋值的,因为就像一个自行车要赋值给汽车类型
类的声明同理向,函数一样可以进行前向声明,然再声明的后面定义类
class Person;
int main(int argc,char**argv){
;
Person personreturn 0;
}
class Person{
public:
int age;
}
//example24.cpp
#include <iostream>
using namespace std;
class Person
{
friend class Room;
private:
int age;
void setAge(int age)
{
this->age = age;
}
public:
(int age) : age(age) {}
Person() = default;
Person};
class Room //在Room内的方法可以访问Person的私有内容
{
public:
;
Person personint getHostAge()
{
.setAge(19);
personreturn person.age;
}
};
int main(int argc, char **argv)
{
;
Room room<< room.getHostAge() << endl; // 19
cout return 0;
}
有时不需要指定某个类全部方法可以访问、支持我们为某个类的特定的方法设置友元关系
这个功能有些鸡肋,一下面的例子不允许在 Room 内定义 Person
类型的属性,因为无定义因为
//example25.cpp
#include <iostream>
using namespace std;
class Person;
class Room
{
public:
int getHostAge(Person &person); //在Room内的此方法可以访问Person的私有内容
};
class Person
{
friend int Room::getHostAge(Person &person);
private:
int age;
void setAge(int age)
{
this->age = age;
}
public:
(int age) : age(age) {}
Person() = default;
Person};
int Room::getHostAge(Person &person)
{
.setAge(19);
personreturn person.age;
}
int main(int argc, char **argv)
{
;
Room room;
Person person<< room.getHostAge(person) << endl; // 19
cout return 0;
}
太鸡肋了,尽量不要用、但要知道有这么回事
如上面的例子
friend int Room::getHostAge(Person &person);
//只是对 int Room::getHostAge(Person &person); 声明了友元
//如果想要将getHostAge的其他重载形式也作为友元则需要为每条重载声明友元
在声明友元时,并不需要其函数在 friend 之前声明,但是在此函数被使用之前必须被声明。
//example26.cpp
#include <iostream>
using namespace std;
class Person
{
friend int func(Person &ptr);
public:
()
Person{
// func(*this); 在此之前func()没有被声明,因此不能使用
}
void a();
void b();
private:
int age;
};
void Person::a()
{
// func(*this); 在此之前func()没有被声明,因此不能使用
}
int func(Person &ptr);
void Person::b()
{
(*this); //在此之前已经声明了func
func}
int func(Person &ptr)
{
.age = 11;
ptrreturn ptr.age;
}
int main(int argc, char **argv)
{
;
Person person.b(); //由person.b 内掉用 func 操纵age
person<< func(person) << endl; // 11
cout return 0;
}
一个类就是一个作用域,每个类都会定义它自己的作用域,在类的作用域之外,普通的数据和函数成员只能由对象、引用、指针使用成员访问运算符来访问,对于类类型成员则使用作用域运算符。
//example27.cpp
#include <iostream>
using namespace std;
class Person
{
private:
int age;
public:
struct Info
{
int age;
void print()
{
<< "Info:: age=" << age << endl;
cout }
};
(int age) : age(age) {}
Person() = default;
Person(int num);
Info setAddAgeint getAge();
};
::Info Person::setAddAge(int num)
Person{
this->age += num;
;
Info info.age = num;
inforeturn info;
}
int main(int argc, char **argv)
{
(18);
Person person::Info info = person.setAddAge(1);
Person.print(); // Info:: age=1
inforeturn 0;
}
目前我们写的程序,名字查找的规则为
对于类内部的成员函数而言,解析其中名字的方式与上面有不同之处
也就出现我们可以在任何方法内使用类的任何属性,不管声明的顺序,因为先编译成员声明,后编译函数体
//example28.cpp
#include <iostream>
using namespace std;
int age = 666;
class Person
{
private:
int age;
public:
(int age) : age(age) //这里会现在Person块作用域内找变量声明age
Person{
}
void setAge(int age);
int getAge();
};
void Person::setAge(int age)
{
this->age = age;
}
int Person::getAge()
{
return age; //现在Person class块作用域内找age声明
}
int main(int argc, char **argv)
{
(19);
Person person<< person.getAge() << endl; // 19
cout << age << endl; // 666
cout return 0;
}
如果在类的外部已经进行了 typedef 某个类型别名,则不能在类的内部重复 typedef 某个名称
//example29.cpp
#include <iostream>
using namespace std;
typedef int Age;
class Person
{
public:
(Age age) : age(age) {}
Personint getAge()
{
return age;
}
private:
// typedef int Age;//Perosn使用了外部的Age,则不能在此作用域重新重复typedef
;
Age age};
//因为Person内已经使用了外层作用域的Age,则不能在类中重新定义该名字
//但有些编译器仍然允许顺利编译
int main(int argc, char **argv)
{
(19);
Person person<< person.getAge() << endl; // 19
cout return 0;
}
//example30.cpp
#include <iostream>
using namespace std;
void print();
class Person
{
private:
void print();
public:
void excute(bool flag);
};
void Person::excute(bool flag)
{
if (flag)
{
();
print//现在if内找
//再在excute内找
//再在Person内找 找到了
//执行Person::print
}
}
void Person::print()
{
<< "Person::print" << endl;
cout }
void print()
{
<< "hello world" << endl;
cout }
int main(int argc, char **argv)
{
;
Person person.excute(true); // Person::print
personreturn 0;
}
但是在实际编码中,我们想要调用对象的内部成员,尽量使用 this 关键词访问,那样我们直接明了的看出是调用内部成员
如果没在构造函数的初始值列表中显式地初始化成员,则成员将在构造函数体之前执行默认初始化
//example31.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
public:
;
string name()
Person{
<< name << endl;
cout }
};
int main(int argc, char **argv)
{
; //输出空字符串
Person personreturn 0;
}
//也就是说在执行构造函数前,属性进行了默认初始化
如果 class 内有 const 属性,我们知道 const 变量必须被定义时初始化,否则就不能再被更改,但是对象内怎么进行初始化呢,我们不想令其为常量,我们想要传参进行初始化,就要使用构造函数初始化列表
//example32.cpp
#include <iostream>
#include <string>
using namespace std;
class Person
{
public:
const string name;
(string name) : name(name)
Person{
}
};
int main(int argc, char **argv)
{
("gaowanlu");
Person person<< person.name << endl; // gaowanlu
cout return 0;
}
下面这种方式是错误的
(string name){
Personthis->name=name;
}
因为在执行构造函数前,const string name 被初始化为空字符串,进而在构造函数中已经不能改变其值了
如果成员属性是 const、引用,或者属于某种未提供默认构造函数的类类型,我们必须通过构造函数初始列表为这些成员提供初始值
构造函数初始化列表只说明用于初始化成员的值,而不限定初始化的具体执顺序
成员初始化顺序与它们在类中定义出现顺序一致
//example33.cpp
#include <iostream>
using namespace std;
class Edge
{
public:
int i;
int j;
(int val) : j(val), i(j)
Edge{
}
};
int main(int argc, char **argv)
{
(2);
Edge edge<< edge.i << endl; //乱码
cout << edge.j << endl; // 2
cout //因为在初始化列表时先执行了i(j) 后执行 j(val)
return 0;
}
在我们实际书写中,初始化列表的顺序与属性定义顺序一致
如果一个构造函数为所有参数都提供了默认实参,则它实际上也定义了默认的无参构造函数
//example34.cpp
#include <iostream>
using namespace std;
class Person
{
public:
unsigned age;
(int age = 1) : age(age)
Person{
}
};
int main(int argc, char **argv)
{
;
Person person<< person.age << endl; // 1
cout }
啥是委托构造函数,是 C++11 的新增特性,一个委托构造函数使用它所属类的其他构造函数执行自己的初始化过程,或者说它把自己的一些职责委托给了其他构造函数,在构造函数初始化列表调用其他构造函数
//example35.cpp
#include <iostream>
using namespace std;
class Person
{
public:
const unsigned age;
() : Person(19)
Person{
<< "Person() : Person(19)" << endl;
cout }
(int age) : age(age)
Person{
<< "Person(int age) : age(age)" << endl;
cout }
};
int main(int argc, char **argv)
{
;
Person person// Person(int age) : age(age)
// Person() : Person(19)
<< person.age << endl; // 19
cout return 0;
}
委托构造函数的使用注意事项
来看一个有趣的例子
//example36.cpp
#include <iostream>
using namespace std;
class Person
{
public:
(int age, string name)
Person{
}
};
struct A
{
;
Person person};
int main(int argc, char **argv)
{
; // error A内的person不能被构造,缺少默认构造函数
A areturn 0;
}
这种问题怎么解决呢,使用默认构造函数
//example37.cpp
#include <iostream>
using namespace std;
class Person
{
public:
(int age = 19, string name = "gaowanlu")
Person{
}
};
struct A
{
;
Person person};
int main(int argc, char **argv)
{
;
A areturn 0;
}
在使用默认构造函数时,不要闹笑话
();//这是使用默认构造函数吗
Person person//这是声明了一个函数person空参数,返回Person类型数据
正确方式
; Person person
也就是我们可以利用构造函数指定为此类对象赋值,赋值等号右边可以为哪些类型,并且还可以在构造函数内进行一系列操作
//example38.cpp
#include <iostream>
using namespace std;
class Person
{
private:
int age;
public:
(int age) : age(age)
Person{
<< this->age << endl;
cout }
() = default;
Personint getAge()
{
return age;
}
};
void print(Person person)
{
<< person.getAge() << endl;
cout }
int main(int argc, char **argv)
{
= 19; // 19
Person person = 18; // 18
person = 1.33; // 1
person = '1'; // 49
person (1); // 1
print//编译器只会自动地执行一步类型转换
return 0;
}
有个一个参数的构造函数我们不想让他具有转换构造函数的特性,在列内函数生命或者定义的时候加上 explicit 即可,explicit 只能在类内使用,成员函数在类外定义是不能使用 explicit
//example39.cpp
#include <iostream>
using namespace std;
class Person
{
private:
int age;
public:
explicit Person(int age);
() = default;
Person};
::Person(int age) : age(age)
Person{
<< this->age << endl;
cout }
int main(int argc, char **argv)
{
// Person person = 19; // error 不存在从 "int" 转换到 "Person" 的适当构造函数
(19); // 19
Person personreturn 0;
}
explicit 其实时抑制了隐式转换构造函数,我们仍然可是使用显式调用构造函数来进行转换。
void print(Person person){
}
(Person(1)); print
标准库中有些类有单参数的构造函数
//以至于我们可以这样对其直接赋值或者初始化
("hello");
string str1="hello"; string str2
<int> vec(10);//10个int vector
什么是聚合类?聚合类使得用户可以直接访问其成员,并且具有特殊的初始化语法形式
C++11 的聚合类型定义
public
所有成员都是
没有定义任何构造函数
没有类内初始值virtual 函数 没有基类,没有
聚合类型的条件(按照 C++17 标准)
如果类存在继承关系,则应额外满足
//example40.cpp
#include <iostream>
using namespace std;
struct Person
{
int age;
;
string namevoid print()
{
<< "age " << age << endl;
cout << "name " << name << endl;
cout }
};
int main(int argc, char **argv)
{
= {19, "gaowanlu"};
Person person .print();
person// age 19
// name gaowanlu
return 0;
}
列表参数值的顺序必须和类内属性定义顺序严格相同
C++17
标准库<type_traits>
提供了一个聚合类型的甄别方法is_aggregate
,可以判断目标类型为聚合类型
#include <iostream>
#include <type_traits>
using namespace std;
class MyString : public std::string
{
};
// C++17
int main(int argc, char **argv)
{
// 0
std::cout << std::is_aggregate_v<std::string> << std::endl;
// 1
std::cout << std::is_aggregate_v<MyString> << std::endl;
return 0;
}
std::string 存在用户提供的构造函数是非聚合类型,MyString 满足聚合类型定义
由于聚合类型定义的扩展,聚合对象的初始化方法也发生了变化,过去想要初始化派生类的基类,需要在派生类中提供构造函数。
#include <iostream>
#include <string>
using namespace std;
class MyStringWithIndex : public std::string
{
public:
(const std::string &str, int idx) : std::string(str), index_(idx)
MyStringWithIndex{
}
int index_ = 0;
};
std::ostream &operator<<(std::ostream &o, const MyStringWithIndex &s)
{
<< s.index_ << ":" << s.c_str();
o return o;
}
// c++11
int main(int argc, char **argv)
{
("hello world", 11);
MyStringWithIndex s// 11:hello world
std::cout << s << std::endl;
return 0;
}
C++17 如果将派生类修改为符合聚合类定义则可以很方便的像 C 初始化结构体一样
#include <iostream>
#include <string>
using namespace std;
class MyStringWithIndex : public std::string
{
public:
int index_ = 0;
};
std::ostream &operator<<(std::ostream &o, const MyStringWithIndex &s)
{
<< s.index_ << ":" << s.c_str();
o return o;
}
// c++17
int main(int argc, char **argv)
{
// {}大括号初始化不支持缩窄转换,也就是如double->int 肯定会报错
{{"hell world"}, 11};
MyStringWithIndex s// 11:hello world
std::cout << s << std::endl;
return 0;
}
在派生类继承了多个基类时,其初始化顺序是有明确定义的,按着继承声明顺序然后才是自己本身
#include <iostream>
#include <string>
using namespace std;
class Num
{
public:
int num_;
};
class MyStringWithIndex : public std::string, public Num
{
public:
int index_ = 0;
};
std::ostream &operator<<(std::ostream &o, const MyStringWithIndex &s)
{
<< s.index_ << " " << s.c_str() << " " << s.num_;
o return o;
}
// c++17
int main(int argc, char **argv)
{
{{"hell world"}, 11, 1};
MyStringWithIndex s// 1 hell world 11
std::cout << s << std::endl;
return 0;
}
代码使用 C++11 或者 C++14 标准可以编译成功,而使用 C++17 标准编译则会出现错误,主要原因就是聚合类型的定义发生了变化。在 C++17 之前,类 DerivedData 不是一个聚合类型,所以 DerivedData d{}会调用编译器提供的默认构造函数。调用 DerivedData 默认构造函数的同时还会调用 BaseData 的构造函数。虽然这里 BaseData 声明的是受保护的构造函数,但是这并不妨碍派生类调用它。从 C++17 开始情况发生了变化,类 DerivedData 变成了一个聚合类型,以至于 DerivedData d{}也跟着变成聚合类型的初始化,因为基类 BaseData 中的构造函数是受保护的关系,它不允许在聚合类型初始化中被调用,所以编译器无奈之下给出了一个编译错误。
#include <iostream>
using namespace std;
class BaseData
{
int data_;
public:
int Get() { return data_; }
protected:
() : data_(11) {}
BaseData};
class DerivedData : public BaseData
{
public:
// DerivedData(){};// 可解决C++17编译不过
};
// C++11 C++14能编译成功
int main(int argc, char **argv)
{
{};
DerivedData dstd::cout << d.Get() << std::endl;
return 0;
}
/*
PS C:\Users\gaowanlu\Desktop\MyProject\note\testcode> g++ main.cpp -o main.exe --std=c++17
main.cpp: In function 'int main(int, char**)':
main.cpp:22:19: error: 'BaseData::BaseData()' is protected within this context
22 | DerivedData d{};
| ^
main.cpp:12:5: note: declared protected here
12 | BaseData() : data_(11) {}
| ^~~~~~~~
*/
我们定义的类的实例也可以是字面值
数据成员都是字面值类型的聚合类是字面值常量类,如果不是聚合类,但复合下述要求,也是字面值常量类
constexpr可以声明基础类型从而获得常量表达式,除此之外constexpr还能声明用户自定义类型。
#include <iostream>
using namespace std;
struct X
{
int x1;
};
constexpr X x = {1};
char buffer[x.x1] = {0};
int main(int argc, char **argv)
{
return 0;
}
不过有时候并不希望成员变量被暴露出来
#include <iostream>
using namespace std;
class X
{
public:
() : x1(5) {}
Xint get() const
{
return x1;
}
private:
int x1;
};
constexpr X x; // 编译失败,X不是字面类型
char buffer[x.get()] = {0}; // 编译失败,x.get()无法在编译阶段计算
int main(int argc, char **argv)
{
return 0;
}
只需要用constexpr声明X类的构造函数,也就是声明一个常量表达式构造函数,需要遵循一些规则:
#include <iostream>
using namespace std;
class X
{
public:
constexpr X() : x1(5) {}
constexpr X(int i) : x1(i) {}
constexpr int get() const
{
return x1;
}
private:
int x1;
};
int main(int argc, char **argv)
{
constexpr X x;
char buffer[x.get()] = {0};
constexpr X x1 = 1;
constexpr X x2(5);
std::cout << x1.get() << std::endl; // 1
std::cout << x2.get() << std::endl; // 5
int i = 9;
// constexpr X x3(i); // 编译错误 退化为了普通构造函数
(i);
X x4return 0;
}
另一个例子
//example41.cpp
#include <iostream>
using namespace std;
class Debug
{
public:
constexpr Debug(bool b = true) : hw(b), io(b), other(b)
{
}
constexpr Debug(bool h, bool i, bool o) : hw(h), io(i), other(o)
{
}
constexpr bool any() const
{
return hw || io || other;
}
void set_hw(bool h)
{
= h;
hw }
void set_io(bool i)
{
= i;
io }
void set_other(bool o)
{
= o;
other }
private:
bool hw;
bool io;
bool other;
};
int main(int argc, char **argv)
{
constexpr Debug debug(false);
// debug是const的又是constexpr
<< (debug.any() ? "true" : "false") << endl; // false
cout // debug.set_hw(false);//debug是constexpr不允许调用非const方法
= debug;
Debug d .set_hw(true); //非constexpr实例可以调用非const方法
d<< (d.any() ? "true" : "false") << endl; // true
cout << (debug.any() ? "true" : "false") << endl; // false
cout return 0;
}
使用constexpr声明自定义类型的变量,必须确保自定义类型的析构函数是平凡的,否则无法通过编译
#include <iostream>
using namespace std;
class A
{
public:
constexpr A()
{
}
~A() {} // 自定义类型中不能有用户自定义的析构函数
};
class B
{
public:
constexpr B() {}
// 析构函数不能是虚函数
// virtual ~B() {}
};
class C : public B
{
public:
constexpr C() : B() {}
// 析构函数不能是虚函数 因为基类的析构函数是virtual的 则其派生类析构函数自动默认是virtual的
};
class D
{
public:
constexpr D() {}
// 基类和成员的析构函数必须都是平凡的
// A a;
};
int main(int argc, char **argv)
{
// constexpr A a; // 编译错误 自定义类型中有用户自定义的析构函数
constexpr C c;
constexpr D d;
return 0;
}
有时候类需要它的一些成员与类本身直接相关,而不是与对象保持联系,也就是说类的静态成员属于类而非类的实例
在静态方法中不能使用 this,同理 static 方法不能是 const 的,对于类的实例对象可以通过成员访问符对静态成员进行访问
//example42.cpp
#include <iostream>
#include <string>
using namespace std;
class Person{
public:
static int age;//static属性声明
()=default;
Personstatic void className(){
<<"Person"<<endl;
cout}
private:
;
string name};
//static属性定义与初始化
int Person::age;
int main(int argc, char **argv)
{
;
Person person1;
Person person2::age=18;
Person<<Person::age<<endl;//18
cout.className();//Person
person1.className();//Person
person2<<person1.age<<endl;//18
cout.age=19;
person1<<Person::age<<endl;//19
cout<<person2.age<<endl;//19
coutreturn 0;
}
上面我们对于类的静态属性,在类中声明,在外部定义。通常情况下静态属性不应在类内部初始化【要注意的是无论怎样写初始化,其初始化器本质上都是在类内作用域进行的,如第二个代码例子】,但 const 静态成员成员可以类内初始化,不过要求初始值其是 constexpr
静态成员可以做普通成员不能做到的事情,如可以使用不完全类型作为属性类型,即声明这个类型时,这个类型还没有被编译器扫描完,也就是类型不完全
//example43.cpp
#include<iostream>
#include<string>
using namespace std;
class Person{
public:
static const unsigned age=19;
static constexpr int weight=75;
static const string name;
static Person* ptr;//静态成员可以是不完全类型
* person;//指针成员可以为不完全类型
Person//Person personInstance;//数据成员必须是完全类型
};
* Person::ptr=nullptr;
Personconst string Person::name="gaownanlu";
int main(int argc,char**argv){
;
Person person<<Person::age<<endl;
cout<<Person::weight<<endl;
cout<<Person::name<<endl;
cout::ptr=&person;
Person<<Person::ptr->name<<endl;//gaowanlu
coutreturn 0;
}
全局作用域可以访问私有构造函数? 不是的,不应该那样理解,静态成员初始化器是在类内进行的
#include<iostream>
using namespace std;
class A{
public:
void name() {
<< "A" << endl;
cout }
static A* ptr;
private:
() = default;
A};
//A a; //“A::A”: 无法访问 private 成员(在“A”类中声明)
* A::ptr = new A;//本质上初始化器在类内进行
A
int main() {
::ptr->name();//A
Adelete A::ptr;
return 0;
}
静态属性可以作为方法的默认实参,而普通属性不可以,因为普通属性属于对象本身而非类
//example44.cpp
#include<iostream>
using namespace std;
class Person{
public:
int age;
(int age=defaultAge):age(age){
Person<<this->age<<endl;
cout}
private:
static const int defaultAge=19;
};
int main(int argc,char**argv){
;//19
Person person1;//19
Person person2return 0;
}
在函数内的定义的static局部变量只根据方法的标识确定是否是同一个,如
#include <iostream>
using namespace std;
class A
{
public:
class B
{
public:
void func();
};
};
void A::B::func()
{
static int n = 0;
++;
n<< "A::B::func n=" << n << endl;
cout }
void func()
{
static int n = 0;
++;
n<< "func() n=" << n << endl;
cout }
int main()
{
::B b1;
A.func(); // A::B::func n=1
b1
::B b2;
A.func(); // A::B::func n=2
b2
::B b3;
A.func(); // A::B::func n=3
b3
(); // func() n=1
func(); // func() n=2
func(); // func() n=3
funcreturn 0;
}
上面因为函数方法的标识都是A::B
所以,三个对象操作的n都是同一个n。
下面的初始化方式其实在 C 语言中就已经支持了
#include <iostream>
using namespace std;
struct X1
{
int x;
int y;
};
struct X2
{
int x;
int y;
;
X1 x1};
int main(int argc, char **argv)
{
= {1, 2};
X1 x1 << x1.x << " " << x1.y << endl; // 1 2
cout = {1, 2, {1, 2}};
X2 x2 // 1 2 1 2
<< x2.x << " " << x2.y << " " << x2.x1.x << " " << x2.x1.y << endl;
cout return 0;
}
C++20 中引入了指定初始化,允许指定初始化数据成员的名称(但是实测 C 语言也是支持的哦),C++中类是聚合类才行
#include <iostream>
using namespace std;
struct X1
{
int x;
int y;
};
struct X2
{
int x;
int y;
;
X1 x1};
int main(int argc, char **argv)
{
{.x = 1, .y = 2};
X1 x1<< x1.x << " " << x1.y << endl; // 1 2
cout = {.x = 1, .y = 2, .x1 = {.x = 1, .y = 2}};
X2 x2 << x2.x << " " << x2.y << " " << x2.x1.x << " " << x2.x1.y << endl;
cout {.y = 1};
X1 x1_2<< x1_2.x << " " << x1_2.y << endl; // 0 1
cout return 0;
}
在联合体中数据成员只能初始化一次
#include <iostream>
using namespace std;
union X
{
int n;
const char *str;
};
int main(int argc, char **argv)
{
// X x{.n = 1, .str = "ccs"};//错误
{.n = 1};
X x{.str = "hello world"};
X x1<< x.n << " " << x1.str << endl;
cout // 1 hello world
return 0;
}