首页 > 其他 > 详细

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

时间:2015-04-06 14:15:12      阅读:110      评论:0      收藏:0      [点我收藏+]
#include <iostream>
using namespace std;
class base
{
private:
    int m;
public:
    base() {};
    base(int m){this->m=m;}
    int get(){return m;}
    void set(int m){this->m=m;}
};//base_end

int main()
{
    base *ptr;
    ptr=new base[2];
    ptr->set(30);
    ptr=ptr+1;
    ptr->set(50);
    base a[2]= {1,9};
    cout<<a[0].get()<<","<<a[1].get()<<endl;
    cout<<ptr->get()<<",";
    ptr=ptr-1;
    cout<<ptr->get()<<endl;
    delete[] ptr;
    return 0;
}


运行结果:

技术分享

知识点总结:

数组和指针做对象

学习心得:

好好学习 天天向上

 

 

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

原文:http://blog.csdn.net/ljd939952281/article/details/44901521

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!