java基本类型的类型转换

19 篇文章 0 订阅
10 篇文章 0 订阅

import org.junit.Test;

/**
* @ClassName: TypeConversion
* @Description: 基本类型的类型转换
* @date 2017年12月20日 下午1:57:30
*
*/
public class TypeConversion {
/**
* @Title: A
* @Description: 弱类型转换
* @param @throws Exception 设定文件
* @return void 返回类型
* @throws
*/
@Test
public void A() throws Exception {
int a=6;
//int类型可以直接自动转换为float类型
float f=a;
System.out.println(f);
byte b=9;
//byte类型不能自动转换为char类型
//char c=b;
//byte类型可以自动转换为double类型
double d=b;
System.out.println(d);
}

/**
* @Title: B
* @Description: 强类型转换
* @param @throws Exception 设定文件
* @return void 返回类型
* @throws
*/
@Test
public void B() throws Exception{
int i=233;
byte b=(byte) i;
System.out.println(b);
double d=3.98;
int i1=(int) d;
System.out.println(i1);
}

/**
* @Title: C
* @Description: 字符串转换成基本类型
* @param @throws Exception 设定文件
* @return void 返回类型
* @throws
*/
@Test
public void C() throws Exception{
String s=”233”;
//使用Integer将String类型转换成int类型
int i=Integer.parseInt(s);
System.out.println(i);
float f=Float.parseFloat(s);
System.out.println(f);
double d=Double.parseDouble(s);
System.out.println(d);
// byte b=Byte.parseByte(s);
// System.out.println(b);
}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值