PoeticalJustice

导航

随笔分类 -  数据类型

DataType 数据类型
摘要:基本类型:四类八种:数值 : 整数:byte,short,int,long。默认是 int 小数:float,double 默认是 double 布尔:boolean 字符:char 引用类型:数组,对象,接口 阅读全文

posted @ 2017-09-28 21:38 PoeticalJustice 阅读(864) 评论(0) 推荐(0)

char
摘要:1 public class TestChar { 2 3 4 public static void main(String[]args){ 5 /* 6 char c1='A'; 7 8 int f=c1+1; 9 char... 阅读全文

posted @ 2017-09-28 21:30 PoeticalJustice 阅读(155) 评论(0) 推荐(0)