博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
llong_max_LLONG_MAX常数,带C ++示例
阅读量:2528 次
发布时间:2019-05-11

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

llong_max

C ++ LLONG_MAX宏常量 (C++ LLONG_MAX macro constant)

LLONG_MAX constant is a macro constant which is defied in climits header, it is used to get the maximum value of a long long int object, it returns the maximum value that a long long int object can store, which is 9223372036854775807 (on 32 bits compiler).

LLONG_MAX常数是在climits标头中定义的宏常数,用于获取long long int对象的最大值,它返回long long int对象可以存储的最大值,即9223372036854775807 (在32位编译器上) )。

Note:

注意:

  • The actual value depends on the compiler architecture or library implementation.

    实际值取决于编译器体系结构或库实现。

  • We can also use <limits.h> header file instead of <climits> header as LLONG_MAX constant is defined in both of the libraries.

    我们也可以使用<limits.h>头文件而不是<climits>头文件,因为在两个库中都定义了LLONG_MAX常量

Syntax of LLONG_MAX constant:

LLONG_MAX常数的语法:

LLONG_MAX

Example:

例:

Constant call:    cout << LLONG_MAX;    Output:    9223372036854775807

C ++代码演示带有climits标头的LLONG_MAX常量示例 (C++ code to demonstrate example of LLONG_MAX constant with climits header)

// C++ code to demonstrate example of // LLONG_MAX constant with climits header#include
#include
using namespace std;int main(){
//prinitng the value of LLONG_MAX cout<<"LLONG_MAX: "<
<

Output

输出量

LLONG_MAX: 9223372036854775807

C ++代码演示带有limits.h头文件的LLONG_MAX常量的示例 (C++ code to demonstrate example of LLONG_MAX constant with limits.h header file)

// C++ code to demonstrate example of // LLONG_MAX constant with 
header file#include
#include
using namespace std;int main(){
//prinitng the value of LLONG_MAX cout<<"LLONG_MAX: "<
<

Output

输出量

LLONG_MAX: 9223372036854775807

翻译自:

llong_max

转载地址:http://envzd.baihongyu.com/

你可能感兴趣的文章
设置和获取函数体现的软件工程
查看>>
linux(ubuntu) 搭建java程序运行环境
查看>>
[NOIP2016]愤怒的小鸟
查看>>
logstash.conf 配置:input kafka,filter,output elasticsearch/mysql
查看>>
(转)在NGUI使用图片文字(数字、美术字)(直接可用于UILable)
查看>>
mongoDB在centos7上的安装
查看>>
python 函数
查看>>
导入导出
查看>>
MongoDB 分片操作
查看>>
在Azure Cloud Service中部署Java Web App(2)
查看>>
在64位系统中无法看到Microsoft Excel Application的问题
查看>>
中国剩余定理
查看>>
截取一段字符串中,两个指定字符串中间的字符串
查看>>
联合权值
查看>>
修改MAC地址的方法(未测试)
查看>>
linux ubuntu 关于vim得一些基本命令
查看>>
九度OJ 1340:小A的计算器 (进制转换)
查看>>
两篇随笔链接
查看>>
Java 类和Static关键字
查看>>
awk --- 常用技巧
查看>>