91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

java語言中一些方法技巧

發布時間:2021-05-06 13:44:18 來源:億速云 閱讀:124 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關java語言中一些方法技巧,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

Java有哪些集合類

Java中的集合主要分為四類:1、List列表:有序的,可重復的;2、Queue隊列:有序,可重復的;3、Set集合:不可重復;4、Map映射:無序,鍵唯一,值不唯一。

我們在使用代碼的時候,有很多便捷的操作,能夠節約編寫代碼的效率和運行速度,也算是java中的小技巧。

1、獲取要反射的方法

獲取反射方法時,有兩個方法,getMethod 和 getDeclaredMethod。

class Class {
 @CallerSensitive
 public Method getMethod(String name, Class<?>... parameterTypes)
 throws NoSuchMethodException, SecurityException {
 Objects.requireNonNull(name);
 SecurityManager sm = System.getSecurityManager();
 if (sm != null) {
 // 1. 檢查方法權限
 checkMemberAccess(sm, Member.PUBLIC, Reflection.getCallerClass(), true);
 }
 // 2. 獲取方法
 Method method = getMethod0(name, parameterTypes);
 if (method == null) {
 throw new NoSuchMethodException(methodToString(name, parameterTypes));
 }
 // 3. 返回方法的拷貝
 return getReflectionFactory().copyMethod(method);
 }
 @CallerSensitive
 public Method getDeclaredMethod(String name, Class<?>... parameterTypes)
 throws NoSuchMethodException, SecurityException {
 Objects.requireNonNull(name);
 SecurityManager sm = System.getSecurityManager();
 if (sm != null) {
 // 1. 檢查方法是權限
 checkMemberAccess(sm, Member.DECLARED, Reflection.getCallerClass(), true);
 }
 // 2. 獲取方法
 Method method = searchMethods(privateGetDeclaredMethods(false), name, parameterTypes);
 if (method == null) {
 throw new NoSuchMethodException(methodToString(name, parameterTypes));
 }
 // 3. 返回方法的拷貝
 return getReflectionFactory().copyMethod(method);
 }
}

2、在Java5中,提供了for-each循環,從而簡化了對數組和集合的循環。Fore-each循環允許您遍歷數組而不需要保留傳統for循環中的索引,也不需要在使用迭代器時調用while循環中的hasNext方法和next方法來遍歷集合。

double[] values = ...;
for(double value : values) {
    // TODO: 處理value
}
 
List<Double> valueList = ...;
for(Double value : valueList) {
    // TODO: 處理value
}

3、得到當前方法的名字

<span style=
"font-family:Arial;font-size:14px;"
>String methodName = Thread.currentThread().getStackTrace()[
1
].getMethodName(); </span>

關于“java語言中一些方法技巧”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

烟台市| 大宁县| 陇南市| 云林县| 那曲县| 曲麻莱县| 新和县| 蒲城县| 舟山市| 德惠市| 新田县| 阜宁县| 波密县| 永济市| 田林县| 新干县| 阜阳市| 渝北区| 白城市| 从化市| 巫山县| 启东市| 封丘县| 乡城县| 上林县| 岑溪市| 高碑店市| 凤山县| 晴隆县| 曲阳县| 德保县| 巴林左旗| 太仆寺旗| 八宿县| 南陵县| 河西区| 孝昌县| 叶城县| 德江县| 五家渠市| 太仓市|