博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c++11新标准 01 long long 类型
阅读量:5059 次
发布时间:2019-06-12

本文共 690 字,大约阅读时间需要 2 分钟。

c++11 long long 类型

代码如下~

#include 
#include
using namespace std;int main(){ cout << "type: \t\t" << "************size**************"<< endl; cout << "bool: \t\t" << "所占字节数:" << sizeof(long long); cout << "\t最大值:" << (numeric_limits
::max)(); cout << "\t\t最小值:" << (numeric_limits
::min)() << endl; // << "\t最大值:" << (numeric_limits
::max)() << "\t最小值:" << (numeric_limits
::min)() << endl; cout << "type: \t\t" << "************size**************"<< endl; return 0; }

PS:limits是表示我们数据类型范围的一个类,大家可以进入这个类中看看

转载于:https://www.cnblogs.com/hiwoshixiaoyu/p/10035102.html

你可能感兴趣的文章
node 单个表加条件查询
查看>>
单例模式
查看>>
Sublime Text 3 绝对神器
查看>>
enableEventValidation
查看>>
[GO]ticker的使用
查看>>
Linux限制端口
查看>>
C++变量初始化
查看>>
node学习心得
查看>>
顺序表存储空间连续问题
查看>>
牛客练习赛46 E 华华和奕奕学物理 (树状数组)
查看>>
JSP实现在项目在网页上查询
查看>>
zencart 网站空白的解决方案
查看>>
【9927】庆功会
查看>>
poi读excel小例子
查看>>
在一台呆滞设置两个listener(Oracle)
查看>>
KDE-SDK(KDE斥地工具)引见
查看>>
Informix IDS 11系统办理(918检验)认证指南,第 7 局部: IDS复制(22)
查看>>
Informix IDS 11系统操持(918考试)认证指南,第 7 部门: IDS复制(17)
查看>>
[优化算法] 拉丁超立方采样与基于优化的均匀采样
查看>>
.NET EasyUI datebox添加清空功能
查看>>