1.calender 日曆類,提供一些操作年月日的方法
2.math 數學類,提供了一些常用的數學計算方法
3.包裝類 包裝類為基本資料型別提供了一些常用操作方法。
基本資料型別
byte
short
char
intlong
float
double
boolean
對應包裝類名
byte
shotr
character
integer
long
float
double
boolean
英語單詞意思
4.自動裝箱和拆箱 實現包裝類物件和基本資料型別的自動轉換
例如: integer i=10 ; 把常量賦值給乙個引用,在語法上是錯誤的。但虛擬機會自動裝箱。
自動實現這個步驟: integer i= new integer(10)
自動拆箱: integer i=10; int a=i+10;這個執行了自動裝箱和自動拆箱
5.正規表示式。 一套用來匹配字串的規則。可以配合string類的matches(「表示式」)方法。
Java中String的常用API
1 string cahr value 構造器傳入乙個字元陣列生成乙個字串物件 2 charat int index 通過下標得到字串中相應位置的字元 3 compareto string anotherstring 按字典順序比較兩個字串 comparetoignorecase string st...
java中Math類的常用API
public static int abs int a 絕對值 public static double ceil double a 向上取整 public static double floor double a 向下取整 public static int max int a,int b 最大值...
演算法競賽中的Java常用API
1 字串中大小寫轉換 1 保留n位小數 bigdecimal.setscale bigdecimal j new bigdecimal 2.225 setscale 2,bigdecimal.round half even system.out.println j 如果捨棄部分左邊的數字為偶數,則作...