文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C++习题-使用指针输出指定的数据[3.4]

C++习题-使用指针输出指定的数据[3.4]

时间:2010-11-18  来源:chengxiaopeng

    建立一个对象数组,内放5个学生的数据(学号,成绩),用指针指向数组首元素,输出第1,3,5个学生的数据。     如果学习过C语言的话,应该都差不多。定义一个指针,指向首元素,然后通过移动指针,使指针指向下一个元素。代码如下:

#include <iostream>
using namespace std;

class Student
{
    public:
    Student(int = 0,int = 0);
    void display();
    
    private:
    int no;
    int score;
};

Student::Student(int no,int score):no(no),score(score){}
void Student::display()
{
    cout << no << ":" << score << endl;
}

int main()
{
    //定义对象数组

    Student stu[5] =
    {
        Student(100,100),
        Student(200,200),
        Student(300,300),
        Student(400,400),
        Student(500,500)
    };
    
    Student *p;//指定对象指针

    p = stu; //将对象数组的首地址赋值给指针对象

    for(int i = 0 ; i < 5; i++)
    {
        switch(i + 1)
        {
            case 1:
            case 3:
            case 5:
               (*p).display();
                break;
            default:
                break;
        }
        p++;
    }
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载