我是靠谱客的博主 大气棉花糖,最近开发中收集的这篇文章主要介绍数据基本类型 与 他们的封装类的相互转换,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在写这篇文章前 我先说一下 Java中的八种基本类型 以及他们的封装类

java中有哪八种基本类型?他们对应的封装类都分别是什么?
答:int、        char、     long、 short、boolean、 float、double、byte;
     Integer、Character、Long、Short、Boolean、Float、Double、Byte。

各种数字类型转换成字符串型:

String s = String.valueOf( value); // 其中 value 为任意一种数字类型。

字符串型转换成各种数字类型:

String s = "169";
byte b = Byte.parseByte( s );
short t = Short.parseShort( s );
int i = Integer.parseInt( s );
long l = Long.parseLong( s );
Float f = Float.parseFloat( s );
Double d = Double.parseDouble( s );

数字类型与数字类对象之间的转换:

byte b = 169;
Byte bo = new Byte( b );
b = bo.byteValue();

short t = 169;
Short to = new Short( t );
t = to.shortValue();

int i = 169;
b = bo.byteValue();

short t = 169;
Short to = new Short( t );
t = to.shortValue();

int i = 169;
Integer io = new Integer( i );
i = io.intValue();

long l = 169;
Long lo = new Long( l );
l = lo.longValue();

float f = 169f;
Float fo = new Float( f );
f = fo.floatValue();

double d = 169f;
Double dObj = new Double( d );
d = dObj.doubleValue();

最后

以上就是大气棉花糖为你收集整理的数据基本类型 与 他们的封装类的相互转换的全部内容,希望文章能够帮你解决数据基本类型 与 他们的封装类的相互转换所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(18)

评论列表共有 0 条评论

立即
投稿
返回
顶部