浪潮培訓四(常用工具類,集合及異常處理)

2021-08-20 15:15:14 字數 1415 閱讀 8044

一、character包裝類靜態工具方法

1、判斷是否是空格 ,character.iswhitespace()

2、大小寫轉換,touppercase(),tolowercase()

3、判斷是否是字母,數字,大寫,小寫,isletter(),isdigit(),isuppercase(),islowercase()

二、math靜態工具類

1、求兩個數中的最大,最小值,math.max,math.min

2、開根號,求絕對值,以及各種函式math.sqrt(),math.abs()....

3、求floor值,求ceil值

4、隨機數,math.random()

三、arrays靜態工具類

1、陣列排序 arrays.sort()

2、二分查詢 ,返回陣列下標 arrays.binarysearch()

3、判斷兩個陣列是否相同 arrays.equals()

4、填充value到整個陣列 arrays.fill()

5、把陣列轉換成字串,arrays.tostring()

四、date,******dateformat,calendar物件

1、date d=new date();

2、以特定格式轉換:******dateformat sdf = new ******dateformat(「yyyy年mm月dd日「);

sdf.format(d);

3、通過set給calendar設定日期並輸出

calendar cal = calendar.getinstance();

calendar cal = calendar.getinstance();

cal.set(calendar.year, 2011);

cal.set(calendar.month, 5);

cal.set(calendar.date, 6);

date d = cal.gettime();

system.out.println(sdf.format(d));

一、collection---list---arraylist/vector/linkedllist

---set---hashset/treeset

1、list和set的區別

list有序,可以重複,set無序,不可以重複

由於list和set都是collection的子介面,所以二者之間可以相互傳遞

並且map和collection之間沒有關係

一、關鍵字 try catch  finally  throw throws

當寫return時 ,在finally中寫return之後,值執行finally中的return

android常用工具類集合

本文集合本人在開發中經常用到的工具類 待續 1 獲取系統日期時間 更詳細的使用詳見 日期時間操作類工具 2 日期格式字串轉換成時 public static string date2timestamp string date str catch exception e return 3 檢查網路是否...

常用工具類

本講內容 常用工具類 陸續更新 author administrator public static context context public void oncreate public static context getcontext 2 提供所有activity呼叫 基類 author ad...

常用工具類

reflectionutils objectutils public static void main string args 判斷兩個陣列是否相等 system.out.println arrays.equals arr,arr true 列印陣列 string s1 arrays.tostrin...