美文网首页
c++基本数据类型

c++基本数据类型

作者: 我与android的爱恨纠葛 | 来源:发表于2020-01-13 15:20 被阅读0次

    整型:

    short 2字节 -2^15 -- 2^15
    int 4字节 -2^31 -- 2^31
    long window 4字节 ,linux (32位) 4字节 ,linux(64位)8字节 -2^31 -- 2^31
    long long 8字节 -2^63 -- 2^63

    实型(浮点型):

    单精度float 4字节 7位有效数字
    双精度double 8字节 15~16位有效数字

    字符型:

    char( 代表一个字符) 1个字节
    字符变量并不是把字符本身放到内存中,而是将字符的ascii码放入到内存中
    char a='a';

    字符串型:

    1,char str[] ="hello world";
    2,string str="hello world"; //使用时需要配置头文件#include<string>

    布尔型:

    bool bl=true/false; 1字节

    ==================================================================
    java 基本数据类型
    四类八种
    整型:
    byte 1字节
    short 2字节
    int 4字节
    long 8字节
    浮点型:
    单精度float 4字节
    双精度double 8字节
    布尔型:
    boolean 1字节

    字符型:
    char 1字节

    java基本数据类型没有string

    相关文章

      网友评论

          本文标题:c++基本数据类型

          本文链接:https://www.haomeiwen.com/subject/bgogactx.html