文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C++习题-对常对象进行操作[3.7.1]

C++习题-对常对象进行操作[3.7.1]

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

#include <iostream>
using namespace std;

class Student
{
    public:
    Student(int n,float s):num(n),score(s){}
    
    void change(int n,float s) const
    {
        num = n;
        score = s;
    }
    
    void display() const
    {
        cout << num << " " << score << endl;
    }
    
    private:
    mutable int num;
    mutable float score;
};

int main()
{
    const Student stud(101,78.5);
    stud.display();
    stud.change(101,80.5);
    stud.display();
    
    system("pause");
    return 0;
}


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

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载