当前位置:网站首页>static数据成员
static数据成员
2022-08-03 06:22:00 【GarryLau】
1.1 static constexpr
成员和static const
成员的异同
#include <iostream>
namespace test_static {
class Account {
public:
Account(int peroid = 9):peroid_1_(peroid){
}
static double rate(){
return interest_rate_;
}
static double getPeroid_2_(){
return peroid_2_;
}
private:
static constexpr double interest_rate_ = 0.395; // [RIGHT]静态常量表达式,只能在类内提供初始值
// static const double interest_rate_ = 0.395; // [ERROR]error: 'constexpr' needed for in-class initialization of static data member 'const double test_static::Account::interest_rate_' of non-integral type
static int peroid_;
const int peroid_1_;
static const int peroid_2_ = 0; // [+],static const类型的成员可在类内初始化或类外初始化,如果类内初始化了,类外可不再定义,但一般还是会在类外定义
};
int Account::peroid_ = 30; // [RIGHT]
constexpr double Account::interest_rate_; // 此句可写、可不写,通常应该写;但此时不能再指定初始值了
//const int Account::peroid_2_; // [++],此句可写、可不写,通常应该写,如果类内初始化过了此处不可再赋值,如果类内没初始化此处需要初始化
auto main() -> int {
std::cout << "testing test_static......\n" << std::endl;
Account acc;
std::cout << acc.rate() << std::endl;
std::cout << Account::rate() << std::endl;
std::cout << Account::getPeroid_2_() << std::endl;
std::cout << "------------------------------" << std::endl;
return 0;
}
}
由以上可知,static constexpr
成员和static const
成员的相同点是,均只能初始化一次。
不同点是,static const
可在类内或类外进行初始化,但static constexpr
只能类内初始化
1.2 静态成员能用于某些场景,而普通成员不能
#include <iostream>
namespace test_static {
class Bar {
public:
Bar& clear(int i = bg); // 静态成员和普通成员的区别1:静态成员可以作为默认实参
private:
static Bar mem1; /* 静态成员和普通成员的区别2:静态成员独立于任何对象,因此,在某些非静态数据成员可能非法的场合,静态成员却可以正常使用 例如本示例中,静态数据成员可以是不完全类型 */
// Bar mem2; // 错误,数据成员必须是完全类型
static int bg;
};
auto main() -> int {
std::cout << "testing test_static......\n" << std::endl;
std::cout << "------------------------------" << std::endl;
return 0;
}
}
边栏推荐
猜你喜欢
随机推荐
IFM network detailed explanation and torch reproduction
关于Attention的超详细讲解
置顶文章-
贷中存量客户的价值挖掘与分类实现,试试这一重要的场景模型
第一章:ARM公司Cortex-M 系列处理器介绍,第二章:嵌入式软件开发介绍和第三章:Cortex-M3和Cortex-M4处理器的一般介绍
excel高级绘图技巧100讲(二十一)- Excel层叠柱形图
C语言实现通讯录功能(400行代码实现)
分布式数据库数据一致性的原理、与技术实现方案
FiBiNet torch reproduction
AlexNet网络详解及复现
MySQL日期和时间戳的转换
华为设备BFD配置命令
信息学奥赛一本通T1453:移动玩具
用代码构建UI界面
被数据分析重塑的5个行业
el-tree设置利用setCheckedNodessetCheckedKeys默认勾选节点,以及通过setChecked新增勾选指定节点
关于利用canvas画带箭头的直线旋转
6.nodejs--promise、async-await
10 common data types in MySQL
信息学奥赛一本通T1452:Keyboarding