中国程序员和其它…
Author
Zhou Renjian
Create@
2004-05-22 22:08
中国程序员和其它程序员的区别
偶尔看到一篇文章是关于中国程序员和日本程序员比较代码的,很有意思,本应该把它发送到论坛里,可是那样会只有很少一部分人参加讨论,把它发表到文档中心。
以下是日本程序员和中国程序员为同一功能写的代码,把日本程序员的开发文档和中国程序员的开发文档对比来看看。说明了什么问题?大家来讨论讨论:
JAPAN:
Dim gridItemIndex As Integer 'comment
Dim currentPageIndex As Integer 'comment
Dim pageSize As Integer 'comment
gridItemIndex = e.Item.ItemIndex
currentPageIndex = meisaiIchiran.CurrentPageIndex
pageSize = meisaiIchiran.PageSize
Dim updateDataRowIndex As Integer 'comment
updateDataRowIndex = (currentPageIndex * pageSize) + gridItemIndex
dt.Rows(updateDataRowIndex).Item(t.BindFldName) = txt
CHINA:
dt.Rows(.CurrentPageIndex * .PageSize + e.Item.ItemIndex).Item(t.BindFldName) = txt
以上代码出自pconline.
Remark
newsunet(2004-5-19 14:44:56) | ||
中国程序员的代码更简洁,日本程序员的代码更清淅,也许是中国程序员是按照工程来付式资的而日本程序员是按照代码行数来付钱的吧! |
Source Link
http://www.csdn.net/develop/article/28/28005.shtm