day11-java中的类型转换
2021/6/27 22:20:25
本文主要是介绍day11-java中的类型转换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
类型转换
由于Java是强类型语言,所以要进行有些运算的时候,需要用到类型转换
字节的大小:从低-到排列如下
byte,short,char------int-----long------flaot(F)-------double
运算中,不同类型的数据先转换为同一类型,然后进行计算
强制类型转换,高-----低
自动转换,低-------高
public class Demo04 {
public static void main(String[] args) {
int i = 128;
byte b =(byte) i;//内存溢出,在转换时尽量避免
//ctrl+鼠标左键查看源代码 //强制转换 (类型)变量名 高----低 //自动转换 低----高 System.out.println(i); System.out.println(b); System.out.println("================"); double c = i; System.out.println(i); System.out.println(c); /* 注意点: 1.不能对布尔值进行转换 2.不能把对象类型转换为不相干的类型 3.在把高容量转换为低容量的时候,强制转换 4.转换的时候可能存在内存溢出,或者精度问题 */ System.out.println("================="); System.out.println((int)23.7); System.out.println((int)-45.67f); System.out.println("================="); char d = 'a'; int e =d+1; System.out.println(e); System.out.println((char)e); System.out.println("================="); //操作比较大的数的时候,注意溢出问题 //JDK7新特性,数字之间可以用下划线分割 int money = 10_0000_0000; int years = 20; int total = money*years;//-1474836480,计算的时候溢出了 System.out.println(total); long total2 = money*years;//默认是int,转换之前已经存在问题了 long total3 = ((long)money*years);//先把一个(随便转换一个就行)数转换为long System.out.println(total3); }
}
这篇关于day11-java中的类型转换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略