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

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

c#中的long类型示例

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

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

LONG_MAX常量是在climits标头中定义的宏常量,用于获取long int对象的最大值,它返回long int对象可以存储的最大值,即9223372036836854775807 (在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 LONG_MAX constant is defined in both of the libraries.

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

Syntax of LONG_MAX constant:

LONG_MAX常数的语法:

LONG_MAX

Example:

例:

Constant call:    cout << LONG_MAX;    Output:    9223372036854775807

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

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

Output

输出量

LONG_MAX: 9223372036854775807

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

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

Output

输出量

LONG_MAX: 9223372036854775807

翻译自:

c#中的long类型示例

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

你可能感兴趣的文章
KD树
查看>>
VsVim - Shortcut Key (快捷键)
查看>>
C++练习 | 模板与泛式编程练习(1)
查看>>
HDU5447 Good Numbers
查看>>
08.CXF发布WebService(Java项目)
查看>>
java-集合框架
查看>>
RTMP
查看>>
求一个数的整数次方
查看>>
点云PCL中小细节
查看>>
铁路信号基础
查看>>
RobotFramework自动化2-自定义关键字
查看>>
[置顶] 【cocos2d-x入门实战】微信飞机大战之三:飞机要起飞了
查看>>
BABOK - 需求分析(Requirements Analysis)概述
查看>>
第43条:掌握GCD及操作队列的使用时机
查看>>
Windows autoKeras的下载与安装连接
查看>>
CMU Bomblab 答案
查看>>
微信支付之异步通知签名错误
查看>>
2016 - 1 -17 GCD学习总结
查看>>
linux安装php-redis扩展(转)
查看>>
Vue集成微信开发趟坑:公众号以及JSSDK相关
查看>>