C++ 面向对象html
c++建立对象的时候若是使用new运算符,将会返回返回一个指针,指向堆中的内存地址
定义一个类,用来描述一个盒子java
#include <iostream> using namespace std; class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 }; int main(){ return 0; }
public 代表这是一个公共的成员。class定义一个类ios
#include <iostream> using namespace std; class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 }; int main(){ Box box1; // 声明一个对象 Box box2; // 声明一个对象 return 0; }
#include <iostream> using namespace std; class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 }; int main(){ Box box1; // 声明一个对象 Box box2; // 声明一个对象 double volume = 0.0; // 定义一个储存体积的 // 第一个盒子 box1.length = 5.0; box1.breadth = 7.0; box1.height = 5.0; // 第二个盒子 box2.length = 10.0; box2.breadth = 10.0; box2.height = 10.0; // 第一个盒子的体积 volume = box1.length * box1.breadth * box1.height; cout << "第一个盒子的体积" << volume << endl; // 第二个盒子的体积 volume = box2.length * box2.breadth * box2.height; cout << "第二个盒子的体积" << volume << endl; return 0; }
类能够为函数成员。c++
#include <iostream> using namespace std; int getVolume(void){ return 3; } class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 double getVolume(void); // 调用函数,将会返回体积。 }; int main(){ return 0; }
#include <iostream> using namespace std; class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 double getVolume(void){ return length * breadth * height; } }; int main(){ return 0; }
访问解析运算符为:: 说明函数属于哪一个类
范围解析运算符指明函数属于哪一个类,标明做用域。函数
#include <iostream> using namespace std; int year; // 定义一个全局变量 class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 double getVolume(void){ return length * breadth * height; } }; void setYear(int year){ ::year = year; // 指向全局变量 } int main(){ return 0; }
在类的外部标明类的成员工具
#include <iostream> using namespace std; int year; // 定义一个全局变量 class Box { public: double length; // 定义长度 double breadth; // 定义宽度 double height; // 定义高度 double getVolume(void){ return length * breadth * height; } }; void setYear(int year){ ::year = year; // 指向全局变量 } double Box::getLength(void){ return length; // 此处返回的是Box类下的getLength变量 } int main(){ return 0; }
解决小函数频繁入栈,出栈的问题,引入inline关键字。
即,内联函数。
使用内联函数的时候,编译器会进行自动替换,即相似于C语言中的宏。以减小入栈和出栈的操做。this
这是建议,是否取决于编译器
使用inline的时候,建议在h文件中,须要的时候写inline
https://openhome.cc/Gossip/Cp...spa
虚函数,用来实现多重继承和多态。
这个后期在说指针
数据的封装为面向对象的特色。
防止函数直接访问类的内部成员。
做用域为一个大花括号code
public在外部能够访问
#include <iostream> using namespace std; class Line{ public: double length; void setLength(double len); // 设置length double getLength(void); // 获取length } // 对成员函数进行定义 double Line::getLength(void){ return length; } void Line::setLength(double len){ length = len; } // 主函数 int main(){ Line line; // 设置长度 line.setLength(6.0); cout << line.getLength() << endl; // 设置长度 line.length = 10.0; cout << line.length << endl; return 0; }
即私有成员,在外部没法访问
缺省值为private 私有的
和私有成员相似,最大的不一样在于在子类中仍然能够访问。
建立对象的时候会执行构造函数
#include <iostream> using namespace std; class Line{ public: void setLength(double len); double getLength(void); Line(); // 构造函数 private: // 私有 double length; }; // 成员函数定义 Line::Line(void) { cout << "Object is being created" << endl; } void Line::setLength(double len){ length = len; } double Line::getLength(void){ return length; } // 程序主函数 int main(){ Line line; // 设置长度 line.setLength(6.0); cout << line.getLength() << endl; return 0; }
类的特殊成员函数,每次删除建立的对象将会执行析构函数
java中是直接将指向设置为null,便可自动进行清除
#include <iostream> using namespace std; class Line{ public: void setLength(double len); double getLength(void); Line(); // 构造函数 ~Line(); // 析构函数 private: // 私有 double length; }; // 成员函数定义 Line::Line(void) { cout << "Object is being created" << endl; } Line::~Line(){ cout << "Object is being deleted" << endl; } void Line::setLength(double len){ length = len; } double Line::getLength(void){ return length; } // 程序主函数 int main(){ Line* line = new Line(); // 设置长度 line->setLength(6.0); cout << line->getLength() << endl; delete line; return 0; }
#include <iostream> using namespace std; class Line{ public: void setLength(double len); double getLength(void); Line(); // 构造函数 ~Line(); // 析构函数 private: // 私有 double length; }; // 成员函数定义 Line::Line(void):length(3) // 等价于内部定义 length = 3 { cout << "Object is being created" << endl; } Line::~Line(){ cout << "Object is being deleted" << endl; } void Line::setLength(double len){ length = len; } double Line::getLength(void){ return length; } // 程序主函数 int main(){ Line* line = new Line(); // 设置长度 line->setLength(6.0); cout << line->getLength() << endl; delete line; return 0; }
须要注意的是,声明的时候是按照声明的顺序进行初始化的,而不是根据初始化列表进行初始化的
一种特殊的构造函数。
这里会涉及到深拷贝和浅拷贝的问题,深拷贝开辟空间,浅拷贝进行引用
使用的场景
把对象传入函数
将对象返回函数
深拷贝,浅拷贝,即便用同类型的对象初始化一个新的对象
类中有指针变量,动态内存分配的时候,必须设置一个拷贝构造函数,若是没有编译器会自动生成拷贝构造函数
#include <iostream> using namespace std; class Line{ public: int getLength(void); void setLength(int length); Line(int len); Line(const Line &obj); // 拷贝构造函数 传入的是地址 ~Line(); private: int* ptr; // 定义一个空指针 }; // 设置成员函数,以及构造函数 Line::Line(int len){ cout << "调用构造函数" << endl; // 进行内存分配 ptr = new int; // 在堆中建立内存空间,完成指向 *ptr = len; // 将传入的内容进行复制到新开辟在堆中的内存空间 } Line::Line(const Line &obj){ cout << "调用拷贝构造函数并为指针ptr分配内存,即完成深拷贝" << endl; ptr = new int; // 从新开辟出一块新的内存空间,完成深拷贝 *ptr = *obj.ptr; // 将待拷贝的,进行内容的赋值 } Line::~Line(void){ // 析构函数 cout << "释放内存" << endl; delete ptr; // 将指针删除,此时在堆中的一并删除 } int Line::getLength(void){ return *ptr; // 返回指向堆中int的内容 } void Line::setLength(int length){ *ptr = length; } void display(Line obj){ // 传入一个对象 建立了一个副本,此时有两分内存。同时储存着obj cout << "line 大小:" << obj.getLength() << endl; // 进行赋值 obj.setLength(3); cout << "line 大小:" << obj.getLength() << endl; } // 主函数 int main(){ // 进行拷贝初始化 Line line1(10); //Line line3 = line1; Line line2 = line1; // 调用拷贝构造函数,建立了一块新的空间 display(line1); display(line2); cout << line1.getLength() << endl; line1.setLength(4); cout << line1.getLength() << endl; return 0; }
友元函数定义在外部,可是有权访问内部成员。
须要在原型中使用friend关键字
#include <iostream> using namespace std; class Box{ double width; // 缺省值为私有的 public: friend void printWidth(Box box); // 定义友元函数,友元函数没有this指针 void setWidth(double wid); }; // 成员函数定义 void Box::setWidth(double wid){ width = wid; } // 友元函数不是任何类的成员函数 void printWidth(Box box){ // 友元函数能够访问类中的任何成员 cout << "width of box" << box.width << endl; } int main(){ Box* box = new Box(); // 使用成员函数设置宽度 box -> setWidth(10.0); // 使用友元函数输出宽度 printWidth(*box); return 0; }
每个对象能够经过this指针访问本身的地址。
#include <iostream> using namespace std; class Box{ public: // 构造函数定义 Box(double l = 2.0, double b = 2.0, double h = 2.0){ cout << "开始输出值" << endl; length = 1; breadth = b; height = h; } double Volume(){ return length * breadth * height; } int compare(Box box){ return this -> Volume() > box.Volume(); // this指向调用的对象,返回一个布尔值 } private: double length; double breadth; double height; }; int main(void){ Box Box1(3.3, 1.2, 1.5); Box Box2(8.5, 6.0, 2.0); cout << Box1.compare(Box2) << endl; return 0; }
使用static关键字
经常使用于定义工具函数
静态成员函数,没有this指针,只能访问静态成员。
普通成员有this指针,能够访问类中的任意成员,静态成员函数没有this指针。
初始化使用
int Box::objectCount = 0;
至于为何要在外面定义,由于要进行分配内存空间。而类仅仅是定义。