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

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

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

SCHAR_MIN constant is a macro constant which is defied in climits header, it is used to get the minimum value of a signed char object, it returns the minimum value that a signed char object can store, which is -128.

SCHAR_MIN常量是在climits标头中定义的宏常量,用于获取签名char对象的最小值,它返回签名char对象可以存储的最小值-128

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 SCHAR_MIN constant is defined in both of the libraries.

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

Syntax of SCHAR_MIN constant:

SCHAR_MIN常量的语法:

SCHAR_MIN

Example:

例:

Constant call:    cout << SCHAR_MIN;    Output:    -128

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

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

Output

输出量

SCHAR_MIN: -128

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

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

Output

输出量

SCHAR_MIN: -128

翻译自:

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

你可能感兴趣的文章
我的第一篇CBBLOGS博客
查看>>
【MyBean调试笔记】接口的使用和清理
查看>>
07 js自定义函数
查看>>
jQueru中数据交换格式XML和JSON对比
查看>>
form表单序列化后的数据转json对象
查看>>
[PYTHON]一个简单的单元測试框架
查看>>
iOS开发网络篇—XML数据的解析
查看>>
[BZOJ4303]数列
查看>>
一般处理程序在VS2012中打开问题
查看>>
C语言中的++和--
查看>>
thinkphp3.2.3入口文件详解
查看>>
POJ 1141 Brackets Sequence
查看>>
Ubuntu 18.04 root 使用ssh密钥远程登陆
查看>>
Servlet和JSP的异同。
查看>>
虚拟机centOs Linux与Windows之间的文件传输
查看>>
ethereum(以太坊)(二)--合约中属性和行为的访问权限
查看>>
IOS内存管理
查看>>
我需要一个足够大的桌子
查看>>
middle
查看>>
[Bzoj1009][HNOI2008]GT考试(动态规划)
查看>>