代码:
#include<iostream>
using namespace std;
class CE
{
private:
int a,b;
int getmin()
{
return (a<b? a:b);
}
public:
int c;
void SetValue(int x1,int x2, int x3)
{
a=x1;
b=x2;
c=x3;
}
int GetMin();
};
int CE::GetMin()
{
int d=getmin();
return (d<c? d:c);
}
int main()
{
int x=5,y=12,z=8;
CE *ep;
ep=new CE;
ep->SetValue(x+y,y-z,10);
cout<<ep->GetMin()<<endl;
CE a=*ep;
cout<<a.GetMin()*3+15<<endl;
return 0;
}
运行结果:
学习心得:
定义ep为指向CE类对象的指针变量,指向新开辟的CE地址,调用ep所指向的对象中的SetValue和GetMin函数,然后输出4,再让指针ep指向a,输出27.