摘要: 1.C++基本数据类型基本数据类型最小存储空间32位计算机字节数byte8位8位char8位8位wchar_c16位16位short16位32位int32位32位long32位32位float32位32位double32位64位long double96位96位ubuntu11.04 32位操作系统下测试如下:#include <iostream>#include <stdio.h>int main(){ std::cout << "整型:" << sizeof(3) * 8 << std::endl; std:: 阅读全文
posted @ 2012-08-06 23:49 haiyupeter 阅读(272) 评论(0) 推荐(0) 编辑