• 大小: 2.96KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++实战源码-const函数的使用(入门级实例221).zip

资源截图

代码片段和文件信息

// constFunction.cpp : Defines the entry point for the console application.
//

#include “stdafx.h“
#include
using namespace std;

class Man //声明一个Man类
{
private:
int m_height;
int m_weight;
public:
Man(int hint w);
void display()const; //声明一个常成员函数
};
Man::Man(int h int w)
{
m_height=h;
m_weight=w;
}

void Man::display()const //定义常成员函数,在其中引用成员变量
{
cout<<“the height of man is :“< cout<<“the weight of man is :“<}

int main()
{
Man man(170120); //定义一个Man类的对象
man.display(); //通过这个对象调用常成员函数
return 0;
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         673  2010-10-14 17:59  constFunction\constFunction.cpp
     文件        4620  2010-10-14 17:59  constFunction\constFunction.dsp
     文件         551  2010-10-14 17:59  constFunction\constFunction.dsw
     文件         300  2010-10-14 17:59  constFunction\StdAfx.cpp
     文件         769  2010-10-14 17:59  constFunction\StdAfx.h

评论

共有 条评论