Google C++ Style Guide

有趣的東西,讀完可以增加程式的閱讀性,愛鑽牛角尖的人會看得很開心:D
如果每個人都照這個Guide寫code,維護起來應該很快。
其中還有一個神奇的東西:cpplint.py
http://google-styleguide.googlecode.com/svn/trunk/cppguide.xml?showone=cpplint#cpplint
是一個Google他們寫的python檔,可以detect style errors
直接run

$ python cpplint.py [file]

就可以自動找出不合style的行數加以修改了!好方便!

Comments