这篇文章将为大家详细讲解有关Java中有多少种数据类型,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
public class BaseDataType{public static void main(String[] args){//整型 byte, short, int ,longbytea1=1; //byte 占 1个字节=8位-2^7~2^7-1(-128~127)shorta2=10; //short 占 2个字节=16位-2^15~2^15-1inta3=100; //int 占 4个字节=32位 -2^31~2^31-1longa4=1000;//long 占 8个字节=64位-2^63~2^63-1System.out.println(a1);System.out.println(a2);System.out.println(a3);System.out.println(a4);//浮点型 float , doubledoubleb1=10.1; //double占8个字节=64位 floatb2=12.2f; //float占4个字节=32位 floatb3=(float)13.3;System.out.println(b1);System.out.println(b2);System.out.println(b3);//字符型 char 是由单引号括起来的单个字符char c1='a'; // char占2个字节=16位char c2='1';char c3='好';System.out.println(c1);System.out.println(c2);System.out.println(c3);//布尔型 booleanboolean d1=true; //布尔型占1个字节=8位boolean d2=false;System.out.println(d1);System.out.println(d2);}}
关于“Java中有多少种数据类型”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。