标签:main iostream ios turn 用法 数据 block 赋值 box
#include<iostream.h>
class A{
public:
A(int x1){ x=x1; }
void disp(){ cout<<"x= "<<x<<endl;}
private:
int x;
};
main()
{
A a(1),b(2);
cout<<" a: "; a.disp();
cout<<" b: "; b.disp();
return 0;
}
程序运行的结果:
a: x=1
b: x=2
cout<<“x=”<<this->x<<endl;
#include<iostream.h>
class A{
public:
A(int x1){ x=x1;}
void disp(){cout<<"\nthis="<<this<<"when x="<<this->x;}
private:
int x;
};
main()
{
A a(1),b(2),c(3);
a.disp();
b.disp();
c.disp();
return 0;
}
this=0x0065FDF4 when x=1
this=0x0065FDF0 when x=2
this=0x0065FDEC when x=3
#include<iostream.h>
class Sample{
private:
int x,y;
public:
Sample(int i=0,int j=0)
{ x=i; y=j; }
void copy(Sample& xy);
void print()
{ cout<<x<<","<<y<<endl; }
};
void Sample::copy(Sample& xy)
{
if (this==&xy) return;
*this=xy;
}
void main()
{
Sample p1,p2(5,6);
p1.copy(p2);
p1.print();
}
运行结果:
5,6
class Circle{
private:
double radius;
public:
Circle(double radius) // 参数与数据成员同名时
{
this->radius = radius; // 去掉 this 如何理解?
} // P272.例9.5中形式参数为何取 nam ?
double get_area()
{
return 3.14 * radius * radius;
}
};
int main()
{
Circle c = Circle(1);
double a = c.get_area();
cout << a << endl;
return 0;
}
this指针是隐式使用的,它是作为参数被传递给成员函数的。
是编译系统自动实现的,程序设计者不必人为地在形参中增加this指针,也不必将对象a的地址传给this指针。
例如,计算Box体积的函数可以改写为
return((*this).height * (*this).width * (*this).length);
标签:main iostream ios turn 用法 数据 block 赋值 box
原文地址:https://www.cnblogs.com/whale90830/p/10532844.html