C++ 静态数据成员初始化及静态函数成员

1.定义静态数据成员后要对静态数据成员进行初始化!
静态数据成员的初始化:
<数据类型><类名>::静态数据成员 = <值>

2.静态数据成员往往数私有的,静态数据成员不能直接访问,要通过定义为公有的静态函数成员来访问静态数据成员。

3.静态函数成员接口实现时在前面不加 static 前缀。

4.静态函数成员,不能直接访问非静态数据成员,除非通过对象名来访问该对象的非静态数据成员。

部分代码描述:
定义货物类,私有成员有货物重量,货物总重量(静态数据成员),初始化静态数据成员。
static int gettotalweight();不能直接访问 weight

#include <iostream>
using namespace std;

class Tgoods{
private:
	int weight;
	static int totalweight;
public:
	Tgoods(int w);
	~Tgoods();
	int getweight();
	static int gettotalweight();
};

//△<数据类型><类名>::<静态数据成员名>=<值>
int Tgoods::totalweight = 0;

Tgoods::Tgoods(int w){
	weight = w;
	totalweight += weight; 
}

Tgoods::~Tgoods(){
	totalweight -= weight;
}

Tgoods::getweight(){
	return weight;
}

int Tgoods::gettotalweight(){
	return totalweight;
}

int main()
{
	Tgoods goods1(20), goods2(30);

	cout<< Tgoods::gettotalweight() <<endl;

	//getchar();
	
	return 0;
}


评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值