public class basedttest while(y<10);
system.out.println(x);
}}
此題簡單,但是尷尬的不記得各基本資料型別最大值和最小值的就悲催了。如下:
基本型別
大小最大值
最小值包裝類
char
16-bit
unicode 0
unicode 2^16-1
character
byte
8bits
-128
+127
byte
short
16bits
-2^15
+2^15-1
short
int32bits
-2^31
+2^31-1
integer
long
64bits
......
long
float
32bits
ieee754
ieee754
float
double
64bits
ieee754
ieee754
double
ieee754是二進位制浮點數算術標準,找下維基百科吧。
jdk1.5後基本型別與包裝類之間有自動拆裝箱,不用程式設計師顯式的轉換.前幾天翻jdk的**發現
/**
* returns an instance representing the specified
* value. if a new instance is not
* required, this method should generally be used in preference to
* the constructor , as this method is likely
* to yield significantly better space and time performance by
* caching frequently requested values.
** this method will always cache values in the range -128 to 127,
* inclusive, and may cache other values outside of this range.
** @param i an value.
* @return an instance representing .
* @since 1.5
*/public static integer valueof(int i)
除了float、double其他基本型別都有快取
public static character valueof(char c)
return new character(c);
}
public static byte valueof(byte b)
public static short valueof(short s)
return new short(s);
}
public static long valueof(long l)
return new long(l);
}
以上搞清楚後,下面這個問題就簡單明瞭了
public static void main(string args)
總結是逐步的,還請大家輕拍。 資料型別和基本運算第一天
來與我一起討論吧 今天我們unity3d 講的是資料型別和基本運算 以及一些概念 一 首先來了解一下我們學到的資料型別 資料型別 整型 int 浮點型別 float double decimal型別 decimal bool 布林 型別 bool char字元型別 char 引用型別 object型...
C語言之資料型別(第一天)
clion 破解方法 2.調節系統時間,將系統時間改為未來的某一天 3.安裝clion安裝之後軟體就可正常使用,可以把時間調回正常值 配置許可權 chmod eclipse 執行檔案 eclipse常量 define tag de 200 編譯時給變數賦值 const int tag con 400...
JAVA面試第一天
今天是開始面試的第一天,下午兩點準時面試,進去看了一下公司,好小,但是還是進去了。開始是個人事給我面了一下,主要就是自我介紹,然後就把我領進他們負責技術的經理辦公室,進去之後技術方面也沒問,就是開始問了一下mysql的字串連線函式,當時沒記起來,這個肯定之前是看過了,後來又問了一句svn 衝突的解決...