Java基础——数据类型

一、数据类型

1、八种基本数据类型

byte 1字节  short  2字节  int 4字节  long 8字节

float 4字节  double 8字节  boolean  char 2字节

 

注:1 byte  =  8 bit(位)  4 byte = 1个字

 

2、 数据类型转换

(1)自动转换

byte,char,short---> int ---> long ---> float ---> double

boolean不参与数据类型的转换

byte、short、char之间不会发生转换

(2)强转类型转换

将高精度转换为低精度数据时,可以使用强制类型转换

 

 

二、关键字

1、public关键字

一个java文件只能定义一个被public修饰的类,且public修饰的类的类名要与java文件名相同

 

2、关键字被Java语言赋予了特殊的含义,且字母均为小写

 

访问控制 private protected public        
类,方法和变量修饰符 abstract class extends final implements interface native
  new static strictfp synchronized transient volatile  
程序控制 break continue return do while if else
  for instanceof switch case default    
错误处理 try catch throw throws finally    
包相关 import package          
基本类型 boolean byte char double float int long
  short null true false      
变量引用 super this void        
保留字 goto const          

详细可参考:

http://cyw3.github.io/YalesonChan/2016/Java-key.html

  

 

posted on 2020-06-08 23:21  lifelicanpeng  阅读(158)  评论(0编辑  收藏  举报

导航