各种基本数据类型的长度


#include<iostream>
#include<map>
using namespace std;

class MapSort{
public:
bool operator()(int size1,int size2){
return size1<size2;
}
};

template<typename T>
void print(T t)
{
typename T::const_iterator iter = t.begin();
while(iter!=t.end()){
cout << iter->second << iter->first << endl;
iter++;
}
}

int main()
{
multimap<int,char*,MapSort> sizeMap;

sizeMap.insert(pair<int,char*>(sizeof(unsigned char),"unsigned char:"));
sizeMap.insert(pair<int,char*>(sizeof(char),"char:"));

sizeMap.insert(pair<int,char*>(sizeof(unsigned short),"unsigned short:"));
sizeMap.insert(pair<int,char*>(sizeof(short),"short:"));

sizeMap.insert(pair<int,char*>(sizeof(unsigned int),"unsigned int:"));
sizeMap.insert(pair<int,char*>(sizeof(int),"int:"));

sizeMap.insert(pair<int,char*>(sizeof(float),"float:"));
sizeMap.insert(pair<int,char*>(sizeof(double),"double:"));
sizeMap.insert(pair<int,char*>(sizeof(unsigned long),"unsigned long:"));
sizeMap.insert(pair<int,char*>(sizeof(long),"long:"));
sizeMap.insert(pair<int,char*>(sizeof(long long),"long long:"));

sizeMap.insert(pair<int,char*>(sizeof(string)," string:"));
print(sizeMap);
}
gcc:
unsigned char:1
char:1
unsigned short:2
short:2
unsigned int:4
int:4
float:4
unsigned long:4
long:4
string:4
double:8
long long:8

vs2008,xp:
unsigned char:1
char:1
unsigned short:2
short:2
unsigned int:4
int:4
float:4
unsigned long:4
long:4
double:8
long long:8
string:32
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值