Fundamental types
Fundamental types
- void type
- boolean type
- character types
- integer types
- Properties
- Data Models
- Floating-point types
- Floating-point properties
Void type
void-type with an empty set of values.There are no arrays of void,nor references to void.However,pointers to void and function returning type void are permitted.
std::nullptr_t
Boolean type
bool-type,capable of holding one of the tow values:true or false
Character types
signed char
unsigned char
char
wchar_t
char16_t
char32_t
Integer types
int - basic integer type.The keyword int may omitted if any of the modifiers listed below are used. If no length modifiers present,it's guaranteed to have a width of at least 16 bits.However,on 32/64 bit system is is almost exclusively guaranteed to have width of at least 32 bits.
Modifiers
Modifies the integer type.Can be mixed in any order. Only one of each group can be present in type name.
Signedness
signed-target type will have signed representation(this is the default if omitted)
unsigned- target type will have unsigned representation
Size
short-target type will be optimized for space and will have width of at least 16bits
long-target type will have width of at least 32 bits.
long long-target type will have width of at least 64 bits.(since C++11)
即int为integer type的基本类型,通过添加修饰符(modifiers)signedor unsigned 和short or long or long long来实现存储空间位数的大小,C++保证每一个类型的最小位数
Properties
LP=Long Point
LLP=Long Long Point
The following table summarizes all available integer types and their properties:
| Type Specifier | Equivalent Type | C++Standard | LP32 | ILP32 | LLP64 | LP64 |
|---|---|---|---|---|---|---|
short |
short int |
at least 16 | 16 | 16 | 16 |
16 |
short int |
short int |
at least 16 | 16 | 16 | 16 |
16 |
signed int |
short int |
at least 16 | 16 | 16 | 16 |
16 |
signed short int |
short int |
at least 16 | 16 | 16 | 16 |
16 |
unsigned short |
unsigned short int |
at least 16 | 16 | 16 | 16 |
16 |
unsigned short int |
unsigned short int |
at least 16 | 16 | 16 | 16 |
16 |
int |
int |
at least 16 | 16 | 32 | 32 |
32 |
signed |
int |
at least 16 | 16 | 32 | 32 |
32 |
signed int |
int |
at least 16 | 16 | 32 | 32 |
32 |
unsigned |
unsigned int |
at least 16 | 16 | 32 | 32 |
32 |
unsigned int |
unsigned int |
at least 16 | 16 | 32 | 32 |
32 |
long |
long int |
at least 32 | 32 | 32 | 32 |
64 |
signed long |
long int |
at least 32 | 32 | 32 | 32 |
64 |
signed long int |
long int |
at least 32 | 32 | 32 | 32 |
64 |
unsigned long |
unsigned long int |
at least 32 | 32 | 32 | 32 |
64 |
unsigned long int |
unsigned long int |
at least 32 | 32 | 32 | 32 |
64 |
long long |
long long int |
at least 32 | 64 | 64 | 64 |
64 |
long long int |
long long int |
at least 32 | 64 | 64 | 64 |
64 |
signed long long |
long long int |
at least 32 | 64 | 64 | 64 |
64 |
signed long long int |
long long int |
at least 32 | 64 | 64 | 64 |
64 |
unsigned long long |
long long int |
at least 32 | 64 | 64 | 64 |
64 |
unsigned long long |
unsigned long long intsince C++11 |
at least 32 | 64 | 64 | 64 |
64 |
unsigned long long int |
unsigned long long intsince C++11 |
at least 32 | 64 | 64 | 64 |
64 |
Besides the minimal bit counts,the C++ Standard guaranteed that
1 == sizeof(char) <= sizeof(short) <= sizeof(int) <= sizeof(long) <= sizeof(long long)
Note:integer arithmetic is defined differently for signed and unsigned integer types.See
arithmetic operators,in particularinteger overflows
Win64 is a LLP64 platform, while Solaris and Linux are LP64 platforms. Thus the only safe way to store pointers in integer types is either always use uintptr_t (defined in stdint.h not included at least with MSVC2003 and earlier), or always use long long fields.
Data models
The choices made by each implementation about the sizes of the fundamental types are collectively known as data model. Four data models found wide acceptance:
32 bit systems:
- LP32 or 2/4/4 (int is 16-bit, long and pointer are 32-bit)
- Win16API
64 bit systems:
- Win16API
- LLP64 or 4/4/8 (
intandlongare 32-bit,pointeris 64-bit)- Win64 API
- LP64 or 4/8/8 (
intis 32-bit,longandpointerare 64-bit)Unix and Unix-like systems (Linux, Mac OS X)
Floating-point types
float- single precision floating point type.Usually IEEE-754 32 bit floating point type
double- double precision floating point type. Usually IEEE-754 64 bit floating point type
long double- extended precision floating point type. Does not necessarily map to types mandated by IEEE-754. Usually 80-bit x87 floating point type on x86 and x86-64 architecturesFloating-point properties
Floating-point types may support special values:
- infinity (positive and negative)
- the negative zero.
-0.0.It compares equal to the positive zero, but is meaningful in some arithmetic operations, e.g.1.0/0.0 == INFINITY, but1.0/-0.0 == -INFINITY), and for some mathematical functions, e.g.sqrt(std::complex) - not-a-number (NaN), which does not compare equal with anything (including itself).
Real floating-point numbers may be used with arithmetic operators + - / * and various mathematical functions from cmath. Both built-in operators and library functions may raise floating-point exceptions and set errno as described in math_errhandling.
浮点数的精度表示FLT_EVAL_METHOD和精收缩问题#pragma STDC FP_CONTRACT
Floating-point expressions may have greater range and precision than indicated by their types, see FLT_EVAL_METHOD. Floating-point expressions may also be contracted, that is, calculated as if all intermediate values have infinite range and precision, see #pragma STDC FP_CONTRACT.
Implicit conversions are defined between real floating types and integer types.
See Limits of floating point types and std::numeric_limits for additional details, limits, and properties of the floating-point types.
Note: actual (as opposed to guaranteed minimal) limits on the values representable by these types are available in <climits>, <cfloat> and std::numeric_limits
Fundamental types的更多相关文章
- The main difference between Java & C++(转载)
转载自:http://stackoverflow.com/questions/9192309/the-main-difference-between-java-c C++ supports point ...
- Java Main Differences between Java and C++
转载自:http://www.cnblogs.com/springfor/p/4036739.html C++ supports pointers whereas Java does not. But ...
- char, signed char, and unsigned char in C++
关于这三者的区别stackoverrflow里有一个答案是这样说的: 3.9.1 Fundamental types [basic.fundamental] 1 Objects declared as ...
- Java中接口作为方法的返回
在<算法>中的散列表一节,在用拉链法实现散列表的API时要求实现以下一个方法: public Iterable<Key> keys() 我们知道Iterable是一个接口,那么 ...
- C++ Bit Fields
http://msdn.microsoft.com/en-us/library/ewwyfdbe%28v=vs.71%29.aspx Note An unnamed bit field of widt ...
- Open CASCADE 基础类(Foundation Classes)
1 介绍(Introduction) 1 如何使用Open CASCADE技术(OCCT)基础类. This manual explains how to use Open CASCADE Techn ...
- 《Velocity java开发指南》中文版(上)转载
文章引自:http://sakyone.iteye.com/blog/524289 1.开始入门 Velocity是一基于java语言的模板引擎,使用这个简单.功能强大的开发工具,可以很容易的将数据对 ...
- (转) class II
Overloading operators Classes, essentially, define new types to be used in C++ code. And types in ...
- (转) Class
Classes are an expanded concept of data structures: like data structures, they can contain data memb ...
随机推荐
- poj3358 Period of an Infinite Binary Expansion 数论有难度
这道题目感觉好难,根本就是无从下手的感觉,尝试了以前的所有方法,都没有思路,毫无进展,参考了一下别人的思路,感觉学到了新的知识 接下来开始分析 观察1/10这组数据,按照二进制转化法可以得到: 1/1 ...
- JBoss 系列二十一:JBossCache核心API
内容简介 本处介绍JBossCache相关的主要API,我们目的通过本部分描述,读者可以使用JBossCache API,在自己的应用中使用JBossCache. Cache接口 Cache 接口是和 ...
- web应用之监听器
package com.log.service; import java.util.Enumeration; import javax.servlet.ServletContext; import j ...
- 【转】VPN服务器配置详解
参考博文: VPN服务器配置详解 等公司上服务器开始配置 vpn
- poj 2007 Scrambled Polygon 极角排序
/** 极角排序输出,,, 主要atan2(y,x) 容易失精度,,用 bool cmp(point a,point b){ 5 if(cross(a-tmp,b-tmp)>0) 6 retur ...
- 为什么要用on()而不直接使用click
为什么要用on()而不直接使用clickhttp://stackoverflow.com/questions/10082031/why-use-jquery-on-instead-of-clickht ...
- SQL中采用Newtonsoft.Json处理json字符串
原文 SQL中采用Newtonsoft.Json处理json字符串 使用环境: SQL Server2005; VS2010; 关于SQL中部署CLR程序集的方法,网上一搜一大把,需要了解的自行查阅, ...
- JAVA CAS单点登录(SSO)
一.教程前言 教程目的:从头到尾细细道来单点登录服务器及客户端应用的每个步骤 单点登录(SSO):请看百科解释猛击这里打开 本教程使用的SSO服务器是Yelu大学研发的CAS(Central Auth ...
- mrtg监控网络流量简单配置
Mrtg服务器搭建(监控网络流量) [日期:2012-07-03] 来源:Linux社区 作者:split_two [字体:大 中 小] [实验环境] 监控机:Red Hat linux 5.3 ...
- Sicily-1063
一.题意 一个员工是另外一个员工的老板必须满足的条件是作为老板的员工的薪水salary必须大于这个员工,而且作为老板的员工的身高height要大于等于这个员工.首先按照薪水的多少从小到大进行排序,然后 ...