大家好,欢迎来到IT知识分享网。
shrt c++
C ++ SHRT_MAX宏常量 (C++ SHRT_MAX macro constant)
SHRT_MAX constant is a macro constant which is defied in climits header, it is used to get the maximum value of a short int object, it returns the maximum value that a short int object can store, which is 32767.
SHRT_MAX常量是在climits标头中定义的宏常量,用于获取short int对象的最大值,它返回short int对象可以存储的最大值,即32767 。
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 SHRT_MAX constant is defined in both of the libraries.
我们也可以使用<limits.h>头文件代替<climits>头文件,因为两个库中都定义了SHRT_MAX常量 。
Syntax of SHRT_MAX constant:
SHRT_MAX常数的语法:
SHRT_MAX
Example:
例:
Constant call: cout << SHRT_MAX; Output: 32767
C ++代码演示带有climits标头的SHRT_MAX常量示例 (C++ code to demonstrate example of SHRT_MAX constant with climits header)
// C++ code to demonstrate example of // SHRT_MAX constant with climits header #include<iostream> #include<climits> using namespace std; int main() {
//prinitng the value of SHRT_MAX cout<<"SHRT_MAX: "<<SHRT_MAX<<endl; return 0; }
Output
输出量
SHRT_MAX: 32767
C ++代码演示带有limits.h头文件的SHRT_MAX常量示例 (C++ code to demonstrate example of SHRT_MAX constant with limits.h header file)
// C++ code to demonstrate example of // SHRT_MAX constant with <limits.h> header file #include<iostream> #include<limits.h> using namespace std; int main() {
//prinitng the value of SHRT_MAX cout<<"SHRT_MAX: "<<SHRT_MAX<<endl; return 0; }
Output
输出量
SHRT_MAX: 32767
翻译自: https://www.includehelp.com/cpp-tutorial/SHRT_MAX-constant-with-example.aspx
shrt c++
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/157804.html