码迷,mamicode.com
首页 > 其他好文 > 详细

第五周 程序阅读——指针(2)

时间:2015-04-06 15:50:33      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:c++   大一练习   对象   

#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;
}

运行结果:

技术分享

知识点总结:

指向对象的指针

知识点总结:

好好学习 天天向上


 

 

 

第五周 程序阅读——指针(2)

标签:c++   大一练习   对象   

原文地址:http://blog.csdn.net/ljd939952281/article/details/44901581

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!