日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

java 各种数据类型的互相转换

發(fā)布時(shí)間:2025/3/12 编程问答 20 豆豆
生活随笔 收集整理的這篇文章主要介紹了 java 各种数据类型的互相转换 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

java 各種數(shù)據(jù)類型的互相轉(zhuǎn)換

StringBuilder轉(zhuǎn)化為String

String str = "abcdessahdfkhkdsj";StringBuilder stb = new StringBuilder(str);

整型數(shù)組轉(zhuǎn)化為字符串

StringBuilder s = new StringBuilder();for(i=1;i<=n;i++) {s.append(String.valueOf(a[i]));}String str = ""+s;

字符串轉(zhuǎn)化為整形數(shù)組

String str="12355";int[] a = new int[str.length()];for(int i=0;i<str.length();i++) {a[i] = str.charAt(i)-'0';}

字符串轉(zhuǎn)化為字符數(shù)組

String str=“12555”;
char[] c = str.toCharArray() ;
System.out.println?;

字符數(shù)組轉(zhuǎn)化為字符串

char[] c = {'a','s','d','4','5',};String str = new String(c);System.out.println(str);

字符數(shù)組轉(zhuǎn)化為整型數(shù)組

char[] c = { ‘1’, ‘2’, ‘3’, ‘4’, ‘5’, };
int[] a = new int[c.length];
for (int i = 0; i < 5; i++) {
a[i] = c[i] - ‘0’;
System.out.println(a[i]);
}

整型數(shù)組轉(zhuǎn)化為字符數(shù)組

int[] a = {1,2,3,4,5};char[] c = new char[a.length];for (int i = 0; i < 5; i++) {c[i] = (char) (a[i]+'0');System.out.println(c[i]);}

整型數(shù)轉(zhuǎn)化為字符串

String str = Integer.toString(i);String s = String.valueOf(i);String s = "" + i;

字符串轉(zhuǎn)化為整型數(shù)

int i = Integer.valueOf(str).intValue();
java類型轉(zhuǎn)換 Integer String Long Float Double Date

如何將字串 String 轉(zhuǎn)換成整數(shù) int?
兩種方法:

1. int i = Integer.parseInt([String]); 或i = Integer.parseInt([String],[int radix]);2. int i = Integer.valueOf(my_str).intValue();: 字串轉(zhuǎn)成 Double, Float, Long 的方法大同小異.

如何將整數(shù) int 轉(zhuǎn)換成字串 String ?
三種方法:

1. String s = String.valueOf(i);2. String s = Integer.toString(i);3. String s = "" + i;: Double, Float, Long 轉(zhuǎn)成字串的方法大同小異. package cn.com.zsh; import java.sql.Date;public class TypeChange { public TypeChange() { }//change the string type to the int type public static int stringToInt(String intstr) { Integer integer; integer = Integer.valueOf(intstr); return integer.intValue(); }//change int type to the string type public static String intToString(int value) { Integer integer = new Integer(value); return integer.toString(); }//change the string type to the float type public static float stringToFloat(String floatstr) { Float floatee; floatee = Float.valueOf(floatstr); return floatee.floatValue(); }//change the float type to the string type public static String floatToString(float value) { Float floatee = new Float(value); return floatee.toString(); }//change the string type to the sqlDate type public static java.sql.Date stringToDate(String dateStr) { return java.sql.Date.valueOf(dateStr); }//change the sqlDate type to the string type public static String dateToString(java.sql.Date datee) { return datee.toString(); } public static void main(String[] args) { java.sql.Date day ; day = TypeChange.stringToDate("2020-02-02"); String strday = TypeChange.dateToString(day); System.out.println(strday); } }
JAVA中常用數(shù)據(jù)類型轉(zhuǎn)換函數(shù)
string->byte Byte static byte parseByte(String s) byte->string Byte static String toString(byte b) char->string Character static String to String (char c) string->Short Short static Short parseShort(String s) Short->String Short static String toString(Short s) String->Integer Integer static int parseInt(String s) Integer->String Integer static String tostring(int i) String->Long Long static long parseLong(String s) Long->String Long static String toString(Long i) String->Float Float static float parseFloat(String s) Float->String Float static String toString(float f) String->Double Double static double parseDouble(String s) Double->String Double static String toString(Double)

數(shù)據(jù)類型

基本類型有以下四種:

int長(zhǎng)度數(shù)據(jù)類型有:byte(8bits)、short(16bits)、int(32bits)、long(64bits)、

float長(zhǎng)度數(shù)據(jù)類型有:單精度(32bits float)、雙精度(64bits double)

boolean類型變量的取值有:ture、false

char數(shù)據(jù)類型有:unicode字符,16位

對(duì)應(yīng)的類類型:Integer、Float、Boolean、Character、Double、Short、Byte、Long

轉(zhuǎn)換原則

從低精度向高精度轉(zhuǎn)換
byte 、short、int、long、float、double、char
注:兩個(gè)char型運(yùn)算時(shí),自動(dòng)轉(zhuǎn)換為int型;當(dāng)char與別的類型運(yùn)算時(shí),也會(huì)先自動(dòng)轉(zhuǎn)換為int型的,再做其它類型的自動(dòng)轉(zhuǎn)換

基本類型向類類型轉(zhuǎn)換
正向轉(zhuǎn)換:通過類包裝器來new出一個(gè)新的類類型的變量

Integer a= new Integer(3);

反向轉(zhuǎn)換:通過類包裝器來轉(zhuǎn)換

int b=a.intValue();

類類型向字符串轉(zhuǎn)換
正向轉(zhuǎn)換:因?yàn)槊總€(gè)類都是object類的子類,而所有的object類都有一個(gè)toString()函數(shù),所以通過toString()函數(shù)來轉(zhuǎn)換即可

反向轉(zhuǎn)換:通過類包裝器new出一個(gè)新的類類型的變量

int i=Integer.valueOf(158).intValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Integer對(duì)象,然后再調(diào)用這個(gè)對(duì)象的intValue()方法返回其對(duì)應(yīng)的int數(shù)值。

float f=Float.valueOf(158).floatValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Float對(duì)象,然后再調(diào)用這個(gè)對(duì)象的floatValue()方法返回其對(duì)應(yīng)的float數(shù)值。

boolean b=Boolean.valueOf(158).booleanValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Boolean對(duì)象,然后再調(diào)用這個(gè)對(duì)象的booleanValue()方法返回其對(duì)應(yīng)的boolean數(shù)值。

double d=Double.valueOf(158).doublue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Double對(duì)象,然后再調(diào)用這個(gè)對(duì)象的doublue()方法返回其對(duì)應(yīng)的double數(shù)值。

long l=Long.valueOf(158).longValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Long對(duì)象,然后再調(diào)用這個(gè)對(duì)象的longValue()方法返回其對(duì)應(yīng)的long數(shù)值。

char=Character.valueOf(158).charValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Character對(duì)象,然后再調(diào)用這個(gè)對(duì)象的charValue()方法返回其對(duì)應(yīng)的char數(shù)值。

基本類型向字符串的轉(zhuǎn)換
正向轉(zhuǎn)換:

int a=12; String b;b=a+””;

反向轉(zhuǎn)換:
通過類包裝器

int i=Integer.parseInt(158)

解說:此方法只能適用于字符串轉(zhuǎn)化成整型變量

float f=Float.valueOf(158).floatValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Float對(duì)象,然后再調(diào)用這個(gè)對(duì)象的floatValue()方法返回其對(duì)應(yīng)的float數(shù)值。

boolean b=Boolean.valueOf(158).booleanValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Boolean對(duì)象,然后再調(diào)用這個(gè)對(duì)象的booleanValue()方法返回其對(duì)應(yīng)的boolean數(shù)值。

double d=Double.valueOf(158).doublue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Double對(duì)象,然后再調(diào)用這個(gè)對(duì)象的doublue()方法返回其對(duì)應(yīng)的double數(shù)值。

long l=Long.valueOf(158).longValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Long對(duì)象,然后再調(diào)用這個(gè)對(duì)象的longValue()方法返回其對(duì)應(yīng)的long數(shù)值。

char=Character.valueOf(158).charValue()

解說:上例是將一個(gè)字符串轉(zhuǎn)化成一個(gè)Character對(duì)象

總結(jié)

以上是生活随笔為你收集整理的java 各种数据类型的互相转换的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。