程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#編程規范---下(6)

C#編程規范---下(6)

編輯:關於C語言

5)一個方法只完成一個任務。不要把多個任務組合到一個方法中,即使那些任務非常小。

好:

void SaveAddress ( string address )
{
 // Save the address.
 // ...
}
  
void SendEmail ( string address, string email )
{
 // Send an email to inform the supervisor that the address is changed.
 // ...
}

不好:

void SaveAddress ( string address, string email )
{
 // Job 1.
 // Save the address.
 // ...
 // Job 2.
 // Send an email to inform the supervisor that the address is changed.
 // ...
}

6)使用括號清晰地表達算術表達式和邏輯表達式的運算順序。如將 x=a*b/c*d 寫成 x=(a*b/c)*d可避免閱讀者誤解為x=(a*b)/(c*d)。

7)總是使用以零為基數的數組。

8)把引用的系統的namespace和自定義或第三方的用一個換行把它們分開.

9)目錄結構中要反應出namespace的層次.

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved