真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

東莞ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!

/**
	知識點: 基本數(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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


名稱欄目:Java面向?qū)ο笾谢緮?shù)據(jù)、包裝類怎么用
標(biāo)題路徑:http://weahome.cn/article/podgos.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部