c语言limits.h_ (limits.h)C ++中(整数类型的大小)的宏常量

c语言limits.h

C ++宏常量(整数类型的大小) (C++ Macro constants of (sizes of integral types))

In this tutorial, we are learning about some of the defined macro constants which are used to find the sizes of the integral types like a character, short, integer, long integer, long long integer. These macro constants are used to find the minimum and maximum size of any integral type of data type.

在本教程中,我们将学习一些定义的宏常量 ,这些常量用于查找整数类型大小,例如字符,短整数,长整数,长整数。 这些宏常量用于查找任何整数类型的数据类型的最小和最大大小。

These macros are defined in <limits.h> header file and <climits> header (for C++ 11).

这些宏在<limits.h>头文件和<climits>头文件中定义(对于C ++ 11)。

C ++中的宏常量列表 (List of Macro constants in C++)

Here, is the list of the macro constants that can be used to find the sizes, minimum and maximum values of the specific integral data types.

此处是宏常量列表,可用于查找特定整数数据类型大小,最小值和最大值

Macro constant DescriptionValue*
CHAR_BITIt returns the number of its in a char object.8
SCHAR_MINIt returns the minimum value of a signed char object.-128
SCHAR_MAXIt returns the maximum value of a signed char object.127
UCHAR_MAXIt returns the maximum value of an unsigned char object.255
CHAR_MINIt returns the minimum value of a char object.0 or SCHAR_MIN
CHAR_MAXIt returns the maximum value of a char objectSCHAR_MAX or UCHAR_MAX
MB_LEN_MAXIt returns the maximum number of bytes in a multibyte character, for any locale 1 or greater
SHRT_MINIt returns the minimum value of a signed short int object.-32768
SHRT_MAXIt returns the maximum value of a signed short int object.32767
USHRT_MAXIt returns the maximum value of an unsigned short int object.65535
INT_MINIt returns the minimum value of a signed int object.-32768 or -2147483648
INT_MAXIt returns the maximum value of a signed int object.32767 or 2147483647
UINT_MAXIt returns the maximum value of an unsigned int object.65535 or 4294967295
LONG_MINIt returns the minimum value of a signed long int object.-2147483648 or -9223372036854775808
LONG_MAXIt returns the maximum value of a signed long int object.2147483647 or 9223372036854775807
ULONG_MAXIt returns the maximum value of an unsigned long int object.4294967295 or 18446744073709551615
LLONG_MINIt returns the minimum value of a signed long long int object.-9223372036854775808
LLONG_MAXIt returns the maximum value of a signed long long int object.9223372036854775807
ULLONG_MAXIt returns the maximum value of an unsigned long long int object.18446744073709551615
宏常数 描述 值*
CHAR_BIT 它在char对象中返回其编号。 8
SCHAR_MIN 它返回签名的char对象的最小值。 -128
SCHAR_MAX 它返回已签名char对象的最大值。 127
UCHAR_MAX 它返回一个无符号char对象的最大值。 255
CHAR_MIN 它返回一个char对象的最小值。 0或SCHAR_MIN
CHAR_MAX 它返回一个char对象的最大值 SCHAR_MAX或UCHAR_MAX
MB_LEN_MAX 对于任何语言环境,它将返回多字节字符中的最大字节数 1或更大
SHRT_MIN 它返回带符号的short int对象的最小值。 -32768
SHRT_MAX 它返回一个有符号的short int对象的最大值。 32767
USHRT_MAX 它返回一个无符号short int对象的最大值。 65535
INT_MIN 它返回一个有符号的int对象的最小值。 -32768或-2147483648
INT_MAX 它返回一个有符号的int对象的最大值。 32767或2147483647
UINT_MAX 它返回一个无符号int对象的最大值。 65535或4294967295
LONG_MIN 它返回一个有符号的long int对象的最小值。 -2147483648或-9223372036854775808
LONG_MAX 它返回一个有符号的long int对象的最大值。 2147483647或9223372036854775807
ULONG_MAX 它返回一个无符号long int对象的最大值。 4294967295或18446744073709551615
LLONG_MIN 它返回一个有符号long long int对象的最小值。 -9223372036854775808
LLONG_MAX 它返回一个有符号long long int对象的最大值。 9223372036854775807
ULLONG_MAX 它返回一个无符号long long int对象的最大值。 18446744073709551615

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

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

Reference: C++ <climits> (limits.h)

参考: C ++ <climits>(limits.h)

C ++程序打印整数类型的大小 (C++ program to print the size of integral types)

// C++ program to print the size of integral types
#include<iostream>
#include<climits>
using namespace std;
int main()
{
cout << "CHAR_BIT 		" << CHAR_BIT 	<< endl;
cout << "SCHAR_MIN 		" << SCHAR_MIN 	<< endl;
cout << "SCHAR_MAX 		" << SCHAR_MAX 	<< endl;
cout << "UCHAR_MAX 		" << UCHAR_MAX 	<< endl;
cout << "CHAR_MIN 		" << CHAR_MIN 	<< endl;
cout << "CHAR_MAX 		" << CHAR_MAX 	<< endl;
cout << "MB_LEN_MAX 		" << MB_LEN_MAX << endl;
cout << "SHRT_MIN 		" << SHRT_MIN 	<< endl;
cout << "SHRT_MAX 		" << SHRT_MAX 	<< endl;
cout << "USHRT_MAX 		" << USHRT_MAX 	<< endl;
cout << "INT_MIN 		" << INT_MIN 	<< endl;
cout << "INT_MAX 		" << INT_MAX 	<< endl;
cout << "UINT_MAX 		" << UINT_MAX	<< endl;
cout << "LONG_MIN 		" << LONG_MIN	<< endl;
cout << "LONG_MAX 		" << LONG_MAX	<< endl;
cout << "ULONG_MAX 		" << ULONG_MAX	<< endl;
cout << "LLONG_MIN 		" << LLONG_MIN	<< endl;
cout << "LLONG_MAX 		" << LLONG_MAX	<< endl;
cout << "ULLONG_MAX 		" << ULLONG_MAX	<< endl;
return 0;
}

Output

输出量

CHAR_BIT                8
SCHAR_MIN               -128
SCHAR_MAX               127
UCHAR_MAX               255
CHAR_MIN                -128
CHAR_MAX                127
MB_LEN_MAX              16
SHRT_MIN                -32768
SHRT_MAX                32767
USHRT_MAX               65535
INT_MIN                 -2147483648
INT_MAX                 2147483647
UINT_MAX                4294967295
LONG_MIN                -9223372036854775808
LONG_MAX                9223372036854775807
ULONG_MAX               18446744073709551615
LLONG_MIN               -9223372036854775808
LLONG_MAX               9223372036854775807
ULLONG_MAX              18446744073709551615

翻译自: https://www.includehelp.com/cpp-tutorial/macro-constants-of-sizes-of-integral-types.aspx

c语言limits.h

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/545922.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

怎样让VB6程序只能运行一次

方法一&#xff1a;利用PrevInstance属性If App.PrevInstance ThenCall MsgBox("对不起本程序已在运行中, 不得重复加载!!", vbCritical)EndEnd If优点&#xff1a;简单方便、缺点&#xff1a;针对性不强、随意复制一份即可再次运行、方法二&#xff1a;创建互斥体&a…

PLSQL_性能优化系列15_Oracle Explain Plan解析计划解读

2014-12-19 Created By BaoXinjian 一、摘要 在SQL语句的执行计划中&#xff0c;包含很多字段项和很多模块&#xff0c;其不同字段代表了不同的含义且在不同的情形下某些字段、模块显示或不显示&#xff0c;下 面的描述给出了执行计划中各字段的含义以及各模块的描述。 二、执行…

漫话:应用程序被拖慢?罪魁祸首竟然是Log4j!

之前一段时间&#xff0c;为我们发现的一个SaaS应用程序会间歇性地卡顿、变慢&#xff0c;因为很长时间都没有定位到原因&#xff0c;所以解决的办法就只能是重启。这个现象和之前我们遇到的程序变得卡顿不太一样&#xff0c;因为我们发现这个应用程序不仅在高流量期间时会变慢…

面试系列第2篇:回文字符串判断的3种方法!

作者 | 磊哥来源 | Java面试真题解析&#xff08;ID&#xff1a;aimianshi666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;回文字符串判断是面试和笔试中常见的面试题之一&#xff0c;同时也是 LeetCode 中一道经典的面试题&#xff0c;那么…

工程中多个不同类型线程池_软件工程中不同类型的设计策略

工程中多个不同类型线程池As we know that the designing phase is probably the second phase in the software development lifecycle, which comes after the feasibility testing and requirement analysis phase. As the name itself defines that in this phase, the sof…

vb检查磁盘类型

Option ExplicitPrivate Declare Function GetDriveType Lib "kernel32.dll" Alias "GetDriveTypeA" (ByVal nDrive As String) As LongPrivate Sub Command1_Click()Select Case GetDriveType("C:\")Case 0MsgBox "未知类型", vbExcl…

Activity具体解释(生命周期、以各种方式启动Activity、状态保存,全然退出等)...

一、什么是Activity&#xff1f; 简单的说&#xff1a;Activity就是布满整个窗体或者悬浮于其它窗体上的交互界面。在一个应用程序中通常由多个Activity构成&#xff0c;都会在Manifest.xml中指定一个主的Activity&#xff0c;例如以下设置 <actionandroid:name"androi…

将十进制转化为八进制的算法_十进制系统转换为八进制系统

将十进制转化为八进制的算法Converting a number from Decimal to Octal is almost similar to converting Decimal into Binary, although just one difference is that unlike Binary conversion, here in an integral part, we successively divide the number by 8 until t…

阿里为什么推荐使用LongAdder,而不是volatile?

这是我的第 87 篇原创文章作者 | 王磊来源 | Java中文社群&#xff08;ID&#xff1a;javacn666&#xff09;转载请联系授权&#xff08;微信ID&#xff1a;GG_Stone&#xff09;阿里《Java开发手册》最新嵩山版在 8.3 日发布&#xff0c;其中有一段内容引起了老王的注意&#…

VC函数中的延时操作

说到程序中的延时&#xff0c;你会想到怎么做&#xff0c;新开一个线程&#xff1f;如果我的程序只用单线程&#xff0c;却又想让函数等上10秒才返回值&#xff0c;而且还不能像使用Sleep函数那样不能处理其它消息呢&#xff1f;我在这里把论坛里能见到的几种延时方式总结一下。…

Eclipse中SVN的安装步骤(两种)和用法

一、给安装EclipseSVN&#xff0c;最常见的有两种方式&#xff1a;手动方式和使用安装向导方式。详细过程例如以下&#xff1a; 方式一&#xff1a;手动安装 1、从官网下载site-1.6.9.zip文件,网址是:subclipse.tigris.org2、从中解压出features与plugins目录&#xff0c;拷贝到…

c构造函数和析构函数_C ++构造函数和析构函数| 查找输出程序| 套装3

c构造函数和析构函数Program 1: 程序1&#xff1a; #include <iostream>using namespace std;class Sample {private:int X;public:Sample(){X 0;}void set(int x){X x;}void print(){cout << X << endl;}};int main(){Sample S[2] { Sample(), Sample()…

XP定时关机

&#xff08;1&#xff09;自己的电脑有时在整理或者下载东西&#xff0c;需要很长时间等待。但是自己因为要休息的原因&#xff0c;不能一直等在电脑弄完后关机。所以这时需要对XP设置定时关机。比如预计这个下载任务完毕后在23:50可以关机&#xff0c;那么点击开始&#xff0…

当当花160买400的书,确定不囤一波?

天空飘来五个字&#xff0c;快要开学啦快快让路 ║ 今天我要去上学喽新学期我决定一定要努力学习没有新书给我充电怎么行&#xff1f;每次买完新书&#xff0c;感觉都是在开一场私人签售会哈哈哈这感觉真不错当当网自营图书大促>> 每满100减50 <<满200减100满300减…

stl取出字符串中的字符_在C ++ STL中使用比较运算符比较两个字符串

stl取出字符串中的字符字符串作为数据类型 (String as datatype) In C, we know string basically a character array terminated by \0. Thus to operate with the string we define character array. But in C, the standard library gives us the facility to use the strin…

万字详解Lambda、Stream和日期

作者&#xff1a;虚无境来源&#xff1a;cnblogs.com/xuwujing/p/10145691.html前言本篇主要讲述是Java中JDK1.8的一些语法特性的使用&#xff0c;主要是Lambda、Stream和LocalDate日期的一些使用。Lambda“Lambda 表达式(lambda expression)是一个匿名函数&#xff0c;Lambda表…

Python 换行符

raw字符串与多行字符串如果一个字符串包含很多需要转义的字符&#xff0c;对每一个字符都进行转义会很麻烦。为了避免这种情况&#xff0c;我们可以在字符串前面加个前缀 r &#xff0c;表示这是一个 raw 字符串&#xff0c;里面的字符就不需要转义了。例如&#xff1a;r\(~_~)…

vb的一些搞怪的操作

VB代码之&#xff1a;鼠标锁option ExplicitPrivate Type RECT Left As Long Top As Long Right As Long Bottom As Long End TypePrivate Declare Function ClipCursor Lib "user32" (lpRect As Any) As LongPrivate Sub Command1_Click()锁定鼠标 Dim r As RECT r.…

给51单片机初学者的建议

凡是diy爱好者都应该知道单片机&#xff0c;用直白的话说他就是单片微型计算机&#xff0c;能进行编程而后实现简单的自动化&#xff0c;智能化。 刚入门的时候&#xff0c;看到一些专业名词简直不知道说的是什么&#xff0c;比如寄存器、定时器、计数器、中断等等&#xff0c…

ai推理_人工智能推理能力问答

ai推理1) Which of the following statements correctly define the concept of Inference in AI? It is the way in which facts and information are stored in the storage system of the agentWhen we conclude the facts and figures to reach a particular decision, th…