C++ 二级里的程序代码解释1

#include <iostream>
using namespace std;

class MyClass {       //class:是定义类的关键字;MyClass:是用户定义的类名;类的成员包括数据成员(成员变量)和成员函数
public:               //public是类中的关键字,对public中的类成员来说,他们是公有的,可以被外面的程序访问

	 MyClass(int i)
	{ value = i; cout << "Constructor called." << endl; }   //constructor:构造函数

	int Max(int x, int y) { return x>y ? x : y; }     // 求两个整数的最大值
                 
	int Max(int x, int y, int z )       // 求三个整数的最大值
	{
		if (x > y)
			return x>z ? x : z;
		else
			return y>z ? y : z;
	}

	int GetValue() const { return value; }

	~MyClass() { cout << "Destructor called." << endl; }     //destructor:解析函数   调用

private:        //private是类中的关键字,对于private中的类成员来说,他们是私有的,只能由类中的成员函数所使用的,而不能被外面的程序访问
	int value;
};

int main()
{
	MyClass obj(50);    //50即为上述  MyClass(int i)中的i

    cout<< "The value is "<< obj.GetValue()<< endl;
	cout << "Max number is " << obj.Max(10,20,30) << endl;
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值