码迷,mamicode.com
首页 > 编程语言 > 详细

Java基础

时间:2019-08-21 00:30:29      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:height   nbsp   highlight   rap   wrapper   width   out   har   java   

1.基本数据类型篇

Java中的基本数据类型只有8个:byte、short、int、long、float、double、char、boolean。

包装类型(wrapper class):Boolean,Character,Byte,Short,Integer,Long,Float,Double

技术图片

占用字节数:

  • 数据类型:byte short int long float double boolean char
  • 占用字节数:12484812(byte对应1,short对应2,以此类推)

 

 1 int a=10;
 2 short b=10;
 3 double c=10;
 4 float d=10.3f;
 5 long e =10L;
 6 Integer integer = Integer.valueOf(a);
 7 Short short1 = Short.valueOf(b);
 8 Double double1 = Double.valueOf(c);
 9 Float float2 = Float.valueOf(d);
10 Long long1 = Long.valueOf(e);
11         
12 System.out.println(integer);
13 System.out.println(short1);
14 System.out.println(double1);
15 System.out.println(float2);
16 System.out.println(long1);
17         
18 System.out.println(integer.intValue());
19 System.out.println(short1.shortValue());
20 System.out.println(double1.doubleValue());
21 System.out.println(float2.floatValue());
22 System.out.println(long1.longValue());

 基础类型常见试题:

<1>如下运行结果:

Integer f1 = 100, f2 = 100, f3 = 127, f4 = 127,f5=128,f6=128;
System.out.println(f1 == f2);
System.out.println(f3 == f4);
System.out.println(f5 == f6);

  

result: 
        true
        true
     false

 

Java基础

标签:height   nbsp   highlight   rap   wrapper   width   out   har   java   

原文地址:https://www.cnblogs.com/wongandy/p/11386176.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!