這篇文章主要介紹“提高代碼性能的技巧有哪些”,在日常操作中,相信很多人在提高代碼性能的技巧有哪些問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”提高代碼性能的技巧有哪些”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
維西網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)公司等網(wǎng)站項(xiàng)目制作,到程序開發(fā),運(yùn)營維護(hù)。創(chuàng)新互聯(lián)建站于2013年開始到現(xiàn)在10年的時(shí)間,我們擁有了豐富的建站經(jīng)驗(yàn)和運(yùn)維經(jīng)驗(yàn),來保證我們的工作的順利進(jìn)行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。
當(dāng)循環(huán)中只需要 Map 的主鍵時(shí),迭代 keySet() 是正確的。但是,當(dāng)需要主鍵和取值時(shí),迭代 entrySet() 才是更高效的做法,比先迭代 keySet() 后再去 get 取值性能更佳。
Mapmap = ...; for (String key : map.keySet()) { String value = map.get(key); ... }
Mapmap = ...; for (Map.Entry entry : map.entrySet()) { String key = entry.getKey(); String value = entry.getValue(); ... }
使用 Collection.size() 來檢測(cè)空邏輯上沒有問題,但是使用 Collection.isEmpty() 使得代碼更易讀,并且可以獲得更好的性能。任何 Collection.isEmpty() 實(shí)現(xiàn)的時(shí)間復(fù)雜度都是 O(1) ,但是某些 Collection.size() 實(shí)現(xiàn)的時(shí)間復(fù)雜度可能是O(n)。
if (collection.size() == 0) { ... }
if (collection.isEmpty()) { ... }
如果需要還需要檢測(cè) null ,可采用 CollectionUtils.isEmpty(collection) 和
CollectionUtils.isNotEmpty(collection)。
將集合作為參數(shù)傳遞給集合自己的方法要么是一個(gè)錯(cuò)誤,要么是無意義的代碼。
此外,由于某些方法要求參數(shù)在執(zhí)行期間保持不變,因此將集合傳遞給自身可能會(huì)導(dǎo)致異常行為。
Listlist = new ArrayList<>(); list.add("Hello"); list.add("World"); if (list.containsAll(list)) { // 無意義,總是返回true ... } list.removeAll(list); // 性能差, 直接使用clear()
java 的集合類用起來十分方便,但是看源碼可知,集合也是有大小限制的。每次擴(kuò)容的時(shí)間復(fù)雜度很有可能是 O(n) ,所以盡量指定可預(yù)知的集合大小,能減少集合的擴(kuò)容次數(shù)。
int[] arr = new int[]{1, 2, 3}; Listlist = new ArrayList<>(); for (int i : arr) { list.add(i); }
int[] arr = new int[]{1, 2, 3}; Listlist = new ArrayList<>(arr.length); for (int i : arr) { list.add(i); }
一般的字符串拼接在編譯期 java 會(huì)進(jìn)行優(yōu)化,但是在循環(huán)中字符串拼接,java 編譯期無法做到優(yōu)化,所以需要使用 StringBuilder 進(jìn)行替換。
String s = ""; for (int i = 0; i < 10; i++) { s += i; }
String a = "a"; String b = "b"; String c = "c"; String s = a + b + c; // 沒問題,java編譯器會(huì)進(jìn)行優(yōu)化 StringBuilder sb = new StringBuilder(); for (int i = 0; i < 10; i++) { sb.append(i); // 循環(huán)中,java編譯器無法進(jìn)行優(yōu)化,所以要手動(dòng)使用StringBuilder }
大家都知道數(shù)組和鏈表的區(qū)別:數(shù)組的隨機(jī)訪問效率更高。當(dāng)調(diào)用方法獲取到 List 后,如果想隨機(jī)訪問其中的數(shù)據(jù),并不知道該數(shù)組內(nèi)部實(shí)現(xiàn)是鏈表還是數(shù)組,怎么辦呢?可以判斷它是否實(shí)現(xiàn) RandomAccess 接口。
// 調(diào)用別人的服務(wù)獲取到list Listlist = otherService.getList(); if (list instanceof RandomAccess) { // 內(nèi)部數(shù)組實(shí)現(xiàn),可以隨機(jī)訪問 System.out.println(list.get(list.size() - 1)); } else { // 內(nèi)部可能是鏈表實(shí)現(xiàn),隨機(jī)訪問效率低 }
在 java 集合類庫中,List 的 contains 方法普遍時(shí)間復(fù)雜度是 O(n) ,如果在代碼中需要頻繁調(diào)用 contains 方法查找數(shù)據(jù),可以先將 list 轉(zhuǎn)換成 HashSet 實(shí)現(xiàn),將 O(n) 的時(shí)間復(fù)雜度降為 O(1) 。
ArrayListlist = otherService.getList(); for (int i = 0; i <= Integer.MAX_VALUE; i++) { // 時(shí)間復(fù)雜度O(n) list.contains(i); }
ArrayListlist = otherService.getList(); Set set = new HashSet(list); for (int i = 0; i <= Integer.MAX_VALUE; i++) { // 時(shí)間復(fù)雜度O(1) set.contains(i); }
在使用長整型常量值時(shí),后面需要添加 L ,必須是大寫的 L ,不能是小寫的 l ,小寫 l 容易跟數(shù)字 1 混淆而造成誤解。
long value = 1l; long max = Math.max(1L, 5);
long value = 1L; long max = Math.max(1L, 5L);
當(dāng)你編寫一段代碼時(shí),使用魔法值可能看起來很明確,但在調(diào)試時(shí)它們卻不顯得那么明確了。這就是為什么需要把魔法值定義為可讀取常量的原因。但是,-1、0 和 1 不被視為魔法值。
for (int i = 0; i < 100; i++){ ... } if (a == 100) { ... }
private static final int MAX_COUNT = 100; for (int i = 0; i < MAX_COUNT; i++){ ... } if (count == MAX_COUNT) { ... }
對(duì)于集合類型的靜態(tài)成員變量,不要使用集合實(shí)現(xiàn)來賦值,應(yīng)該使用靜態(tài)代碼塊賦值。
private static Mapmap = new HashMap () { { put("a", 1); put("b", 2); } }; private static List list = new ArrayList () { { add("a"); add("b"); } };
private static Mapmap = new HashMap<>(); static { map.put("a", 1); map.put("b", 2); }; private static List list = new ArrayList<>(); static { list.add("a"); list.add("b"); };
Java 7 中引入了 try-with-resources 語句,該語句能保證將相關(guān)資源關(guān)閉,優(yōu)于原來的 try-catch-finally 語句,并且使程序代碼更安全更簡潔。
private void handle(String fileName) { BufferedReader reader = null; try { String line; reader = new BufferedReader(new FileReader(fileName)); while ((line = reader.readLine()) != null) { ... } } catch (Exception e) { ... } finally { if (reader != null) { try { reader.close(); } catch (IOException e) { ... } } } }
private void handle(String fileName) { try (BufferedReader reader = new BufferedReader(new FileReader(fileName))) { String line; while ((line = reader.readLine()) != null) { ... } } catch (Exception e) { ... } }
刪除未使用的私有方法和字段,使代碼更簡潔更易維護(hù)。若有需要再使用,可以從歷史提交中找回。
public class DoubleDemo1 { private int unusedField = 100; private void unusedMethod() { ... } public int sum(int a, int b) { return a + b; } }
public class DoubleDemo1 { public int sum(int a, int b) { return a + b; } }
刪除未使用的局部變量,使代碼更簡潔更易維護(hù)。
public int sum(int a, int b) { int c = 100; return a + b; }
public int sum(int a, int b) { return a + b; }
未使用的方法參數(shù)具有誤導(dǎo)性,刪除未使用的方法參數(shù),使代碼更簡潔更易維護(hù)。但是,由于重寫方法是基于父類或接口的方法定義,即便有未使用的方法參數(shù),也是不能刪除的。
public int sum(int a, int b, int c) { return a + b; }
public int sum(int a, int b) { return a + b; }
對(duì)應(yīng)表達(dá)式中的多余括號(hào),有人認(rèn)為有助于代碼閱讀,也有人認(rèn)為完全沒有必要。對(duì)于一個(gè)熟悉 Java 語法的人來說,表達(dá)式中的多余括號(hào)反而會(huì)讓代碼顯得更繁瑣。
return (x); return (x + 2); int x = (y * 3) + 1; int m = (n * 4 + 2);
return x; return x + 2; int x = y * 3 + 1; int m = n * 4 + 2;
工具類是一堆靜態(tài)字段和函數(shù)的集合,不應(yīng)該被實(shí)例化。但是, Java 為每個(gè)沒有明確定義構(gòu)造函數(shù)的類添加了一個(gè)隱式公有構(gòu)造函數(shù)。所以,為了避免 java "小白"使用有誤,應(yīng)該顯式定義私有構(gòu)造函數(shù)來屏蔽這個(gè)隱式公有構(gòu)造函數(shù)。
public class MathUtils { public static final double PI = 3.1415926D; public static int sum(int a, int b) { return a + b; } }
public class MathUtils { public static final double PI = 3.1415926D; private MathUtils() {} public static int sum(int a, int b) { return a + b; } }
用catch語句捕獲異常后,什么也不進(jìn)行處理,就讓異常重新拋出,這跟不捕獲異常的效果一樣,可以刪除這塊代碼或添加別的處理。
private static String readFile(String fileName) throws IOException { try (BufferedReader reader = new BufferedReader(new FileReader(fileName))) { String line; StringBuilder builder = new StringBuilder(); while ((line = reader.readLine()) != null) { builder.append(line); } return builder.toString(); } catch (Exception e) { throw e; } }
private static String readFile(String fileName) throws IOException { try (BufferedReader reader = new BufferedReader(new FileReader(fileName))) { String line; StringBuilder builder = new StringBuilder(); while ((line = reader.readLine()) != null) { builder.append(line); } return builder.toString(); } }
雖然通過類的實(shí)例訪問公有靜態(tài)常量是允許的,但是容易讓人它誤認(rèn)為每個(gè)類的實(shí)例都有一個(gè)公有靜態(tài)常量。所以,公有靜態(tài)常量應(yīng)該直接通過類訪問。
public class User { public static final String CONST_NAME = "name"; ... } User user = new User(); String nameKey = user.CONST_NAME;
public class User { public static final String CONST_NAME = "name"; ... } String nameKey = User.CONST_NAME;
空指針異常應(yīng)該用代碼規(guī)避(比如檢測(cè)不為空),而不是用捕獲異常的方式處理。
public String getUserName(User user) { try { return user.getName(); } catch (NullPointerException e) { return null; } }
public String getUserName(User user) { if (Objects.isNull(user)) { return null; } return user.getName(); }
當(dāng)要把其它對(duì)象或類型轉(zhuǎn)化為字符串時(shí),使用 String.valueOf(value) 比 ""+value 的效率更高。
int i = 1; String s = "" + i;
int i = 1; String s = String.valueOf(i);
當(dāng)一段代碼過時(shí),但為了兼容又無法直接刪除,不希望以后有人再使用它時(shí),可以添加 @Deprecated 注解進(jìn)行標(biāo)記。在文檔注釋中添加 @deprecated 來進(jìn)行解釋,并提供可替代方案
/** * 保存 * * @deprecated 此方法效率較低,請(qǐng)使用{@link newSave()}方法替換它 */ @Deprecated public void save(){ // do something }
BigDecimal(double) 存在精度損失風(fēng)險(xiǎn),在精確計(jì)算或值比較的場(chǎng)景中可能會(huì)導(dǎo)致業(yè)務(wù)邏輯異常。
BigDecimal value = new BigDecimal(0.1D); // 0.100000000000000005551115...
BigDecimal value = BigDecimal.valueOf(0.1D);; // 0.1
返回 null ,需要調(diào)用方強(qiáng)制檢測(cè) null ,否則就會(huì)拋出空指針異常。返回空數(shù)組或空集合,有效地避免了調(diào)用方因?yàn)槲礄z測(cè) null 而拋出空指針異常,還可以刪除調(diào)用方檢測(cè) null 的語句使代碼更簡潔。
public static Result[] getResults() { return null; } public static ListgetResultList() { return null; } public static Map getResultMap() { return null; } public static void main(String[] args) { Result[] results = getResults(); if (results != null) { for (Result result : results) { ... } } List resultList = getResultList(); if (resultList != null) { for (Result result : resultList) { ... } } Map resultMap = getResultMap(); if (resultMap != null) { for (Map.Entry resultEntry : resultMap) { ... } } }
public static Result[] getResults() { return new Result[0]; } public static ListgetResultList() { return Collections.emptyList(); } public static Map getResultMap() { return Collections.emptyMap(); } public static void main(String[] args) { Result[] results = getResults(); for (Result result : results) { ... } List resultList = getResultList(); for (Result result : resultList) { ... } Map resultMap = getResultMap(); for (Map.Entry resultEntry : resultMap) { ... } }
對(duì)象的 equals 方法容易拋空指針異常,應(yīng)使用常量或確定有值的對(duì)象來調(diào)用 equals 方法。當(dāng)然,使用java.util.Objects.equals() 方法是最佳實(shí)踐。
public void isFinished(OrderStatus status) { return status.equals(OrderStatus.FINISHED); // 可能拋空指針異常 }
public void isFinished(OrderStatus status) { return OrderStatus.FINISHED.equals(status); } public void isFinished(OrderStatus status) { return Objects.equals(status, OrderStatus.FINISHED); }
枚舉通常被當(dāng)做常量使用,如果枚舉中存在公共屬性字段或設(shè)置字段方法,那么這些枚舉常量的屬性很容易被修改。理想情況下,枚舉中的屬性字段是私有的,并在私有構(gòu)造函數(shù)中賦值,沒有對(duì)應(yīng)的 Setter 方法,最好加上 final 修飾符。
public enum UserStatus { DISABLED(0, "禁用"), ENABLED(1, "啟用"); public int value; private String description; private UserStatus(int value, String description) { this.value = value; this.description = description; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } }
public enum UserStatus { DISABLED(0, "禁用"), ENABLED(1, "啟用"); private final int value; private final String description; private UserStatus(int value, String description) { this.value = value; this.description = description; } public int getValue() { return value; } public String getDescription() { return description; } }
字符串 String 的 split 方法,傳入的分隔字符串是正則表達(dá)式!部分關(guān)鍵字(比如.[]()\|等)需要轉(zhuǎn)義
"a.ab.abc".split("."); // 結(jié)果為[] "a|ab|abc".split("|"); // 結(jié)果為["a", "|", "a", "b", "|", "a", "b", "c"]
"a.ab.abc".split("\\."); // 結(jié)果為["a", "ab", "abc"] "a|ab|abc".split("\\|"); // 結(jié)果為["a", "ab", "abc"]
到此,關(guān)于“提高代碼性能的技巧有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!