溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java面向?qū)ο笾谢緮?shù)據(jù)、包裝類怎么用

發(fā)布時間:2021-12-30 15:14:29 來源:億速云 閱讀:123 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“Java面向?qū)ο笾谢緮?shù)據(jù)、包裝類怎么用”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Java面向?qū)ο笾谢緮?shù)據(jù)、包裝類怎么用”這篇文章吧。

/**
	知識點: 基本數(shù)據(jù)類型 對應(yīng)的 包裝類
		1. 基本數(shù)據(jù)類型包括:
			1. 數(shù)值類型
				1.1 byte    ->   Byte
				1.2 short   ->   Short
				1.3 int     ->   Integer
				1.4 long    ->   Long
				1.5 float   ->   Float
				1.6 double  ->   Double
			2. 字符型
				2.1 char    ->   Character
			3. 布爾型
				3.1 boolean ->   Boolean
		2. 包裝類的應(yīng)用
			2.1 使基本數(shù)據(jù)類型也可以有引用類型
			2.2 實現(xiàn)數(shù)據(jù)類型的轉(zhuǎn)換功能
	注意:
		1. 在jdk 1.5 之后 基本數(shù)據(jù)類型和包裝類型是可以相互賦值
*/public class WrapClass {	
	public static void main(String[] args)
	{
		Byte a=1;		byte b=10;
		a=b;
		System.out.println(a.byteValue());
		System.out.println(Integer.valueOf(b));		//包裝類的應(yīng)用 主要是  數(shù)據(jù)類型的轉(zhuǎn)換
		//整型轉(zhuǎn)  double 型
		int c=100;
		Integer d=new Integer(c);
		System.out.println(d.doubleValue());		//整型轉(zhuǎn) long 型
		System.out.println(d.longValue());		//整型轉(zhuǎn) 字符串
		String str=Integer.toString(d);
		System.out.println(str);		//字符串轉(zhuǎn) 整型
		int e=Integer.parseInt(str);
		System.out.println(e);
		System.out.println(Integer.toBinaryString(e));
		System.out.println(Integer.signum(e));
		System.out.println(Integer.bitCount(e));
		System.out.println(Integer.highestOneBit(e));
		System.out.println(Integer.numberOfLeadingZeros(e));
	}
}

以上是“Java面向?qū)ο笾谢緮?shù)據(jù)、包裝類怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI