Skip to content
What you think is what you get
What you think is what you get
Home
Posts
About Me
Home
Posts
About Me
Follow on
linkedin
Follow on
github
Follow on
twitter
Follow on
facebook
Follow on
instagram
What you think is what you get
Home
Posts
About Me
Posts filed under: Coding Principle
Coding Principle
Coding Principle
撰寫變數的原則(Variable Principle)
by
zgh149
5 5 月, 2016
0
分別從 Code Complete2 , Clean Code , The art of readable c......
Coding Principle
計算函式複雜度(by decision points – Tom McCabe)
by
zgh149
15 4 月, 2016
0
使用 Tom McCabe 的 decision points(決策點)計算函式複雜度。 Step 1.從函式......
Coding Principle
布林表達式(Boolean Expression)
by
zgh149
15 4 月, 2016
0
布林表示式: 1.不要用數字(0,1)來表示布林邏輯,改用boolean。 2.使用隱式表達。e.g. if(......
Coding Principle
撰寫迴圈的原則(loop principle)
by
zgh149
15 4 月, 2016
0
Java 迴圈表達的方式共有 while,do-while,for,for-each。 以下列出撰寫迴圈需要注......
Coding Principle
撰寫條件式的原則(condition principle)
by
zgh149
14 4 月, 2016
0
Java 條件式主要有 if-else 以及 switch 2種,撰寫條件式有一些原則可以參考。 ......