编写优美的代码 下面有些例子给出优美代码的模式。优美代码不能不非优美代码提高效率,但能够给代码阅读者一个好的印象。 下面有一些示例: 程序代码: --------------------------------------------------- // 代码 string address = "3000 Briarcliff Rd." + "\n" + "Atlanta, GA" + "\n" + "USA."; // 优美代码 string address1 = "3000 Briarcliff Rd." + NewLine + "Atlanta, GA" + NewLine + "USA."; --------------------------------------------------- // 代码 string name = ""; // 优美代码 string name1 = String.Empty; --------------------------------------------------- // 代码 txtName.Text = ""; // 优美代码 txtName.Clear(); --------------------------------------------------- // 代码 if ( a == 1 ) { } else { } // 优美代码 return a == 1; --------------------------------------------------- // 代码 if ( sex == "Male" ) { } else { } return "Mrs."; return "Mr."; return false; return true; 本文来源:https://www.wddqw.com/doc/f724b543a75177232f60ddccda38376baf1fe06b.html