自学编程

package day01;


public class 数据类型使用 {

public static void main(String[] args) {

System.out.println("数值型---整数型");

/* byte(字节 -- 8)   short(短整型---16)  

int(整型 -- 32 )   long(长正型---64)

* 整数型:默认使用的int类型

*        使用long类型的时候,会在后面添加"L",表示该数据为long类型

*/

byte b1 = 12;

//byte b2 = 128; //error

byte b3 = 127;

short sh1 = 300;

int i1 = 111223333; //大约21亿

//int i2 = 2222222222; //error

//long la = 2222222222;

long Lb = 22222222222L;

/*

* 浮点类型   

*      float( 32 )   double(64 )

*      默认是double类型

*/

float f1 = 3.14F;

double d1 = 3.14;

/*

* char  字符 表示的是单个字符  使用''引起来

*        我们可以使用数字来进行赋值

* String 字符串 可以表示多个字符  使用" "引来来

*/

char ch1 = 'A';

char ch2 = '*';

char ch3 = '啊';

// char ch4 = 'aaaa'; //是错误的写法

String str ="xxxx";

charch5 = 65;// 70  97 100

System.out.println("65 = " +ch5);//syso -->alt + / 

char ch6 = 70;

System.out.println("70 = " +ch6);

char ch7 = 97;

System.out.println("97 = " +ch7);

char ch8 = 100;

System.out.println("100 = " +ch8);

//有些字符具有特殊的含义 \  转义字符 --->

char ch9 = '\\';

System.out.println("ch9 " +ch9);

System.out.println("------------");

System.out.println('\n'); //换行

System.out.println('\n');

System.out.println('\n');

System.out.println("------------");

/*

* boolean  布尔类型  用于表示  真 / 假

*      只有两个值  true / false

*/

}


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值