在 C++ 中,只有成员函数才有 this 指针(友元函数没有 this 指针,因为友元不是类的成员),this 指针是所有成员函数的隐含参数。
在成员函数内部,this指针 可以用来指向调用对象,每一个对象都能通过 this 指针来访问自己的地址。
【 2. 实例 】
// 比较Box1与Box2体积的大小#include<iostream>usingnamespace std;classBox{public:// 构造函数定义Box(double l=2.0,double b=2.0,double h=2.0){cout <<"Constructor called."<< endl;length = l;breadth = b;height = h;}doubleVolume(){return length * breadth * height;}intcompare(Box box){returnthis->Volume()> box.Volume();}private:double length;// Length of a boxdouble breadth;// Breadth of a boxdouble height;// Height of a box};intmain(void){Box Box1(3.3,1.2,1.5);// Declare box1Box Box2(8.5,6.0,2.0);// Declare box2if(Box1.compare(Box2)){cout <<"Box2 is smaller than Box1"<<endl;}else{cout <<"Box2 is equal to or larger than Box1"<<endl;}return0;}
TX Text Control 支持VISUAL STUDIO 2022、.NET 5 和 .NET 6 支持 .NET WPF 应用程序的文档处理 将文档编辑、创建和 PDF 生成添加到您的 WPF 应用程序中。 视窗用户界面 功能齐全的文档编辑器 TX Text Control 是一款完全可编程的丰富编辑控件,它在专为 Visual Stu…
一、问题描述
某次OS升级到Anolis 8.6后,但是还需要centos 6.5的yum源,恢复回去后,yum更新,报如下错误: Errors during downloading metadata for repository ‘base’:
Curl error (8): Weird server reply for ftp…
SAP BW(Business Information Warehouse)是一种强大的数据仓库解决方案,它可以帮助企业收集、处理和分析海量数据,以支持更明智的商业决策。以下是一些关于SAP BW的重要知识点:
数据集成:SAP BW能够从各种…