What you think is what you get

Posts filed under: Coding Principle

撰寫變數的原則(Variable Principle)

分別從 Code Complete2 , Clean Code , The art of readable c......

計算函式複雜度(by decision points – Tom McCabe)

使用 Tom McCabe 的 decision points(決策點)計算函式複雜度。 Step 1.從函式......

布林表達式(Boolean Expression)

布林表示式: 1.不要用數字(0,1)來表示布林邏輯,改用boolean。 2.使用隱式表達。e.g. if(......

撰寫迴圈的原則(loop principle)

Java 迴圈表達的方式共有 while,do-while,for,for-each。 以下列出撰寫迴圈需要注......

撰寫條件式的原則(condition principle)

Java 條件式主要有 if-else 以及 switch 2種,撰寫條件式有一些原則可以參考。  ......