正在阅读:C# 编码规范和编程好习惯C# 编码规范和编程好习惯

2004-08-12 10:23 出处:CSDN 作者:杨贺宏编译 责任编辑:linjixiong

  良好的编程习惯

  遵从以下良好的习惯以写出好程序

  避免使用大文件。如果一个文件里的代码超过300~400行,必须考虑将代码分开到不同类中。
  避免写太长的方法。一个典型的方法代码在1~25行之间。如果一个方法发代码超过25行,应该考虑将其分解为不同的方法。
  方法名需能看出它作什么。别使用会引起误解的名字。如果名字一目了然,就无需用文档来解释方法的功能了。

  好:


  void SavePhoneNumber ( string phoneNumber )
  {
  // Save the phone number.
  }


  不好:


  // This method will save the phone number.
  void SaveData ( string phoneNumber )
  {
  // Save the phone number.
  }

  一个方法只完成一个任务。不要把多个任务组合到一个方法中,即使那些任务非常小。

  好:


  // Save the address.
  SaveAddress (  address );
  
  // Send an email to the supervisor to inform that the address is updated.
  SendEmail ( address, email ); 
  
  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.
  // ...
  }


察看评论详细内容 我要发表评论
作者笔名 简短内容 发表时间
:

键盘也能翻页,试试“← →”键

关注我们

最新资讯离线随时看 聊天吐槽赢奖品