一张图总结Google C++编程规范
使用 cpplint.py 检查风格错误。
科普:
"FOOBAR"来自于二战时期的粗口 FUBAR (Fucked Up Beyond All Repair,一塌糊涂) 的谐音。foobar又为foo-bar,其中bar是beyond all recognition的缩写,通俗点就是无法识别,一塌糊涂的意思。而foo是fu的变体,fu是英语习语fuck-up的缩写,同样是一团糟的意思。而后计算机科学界将这个词拆开,表达变量名只作为标号,不包含实际意义,并且约定俗成FOO和BAR代表第一个和第二个标号。
参考:
https://github.com/google/styleguide
https://zh-google-styleguide.readthedocs.io/en/latest/google-cpp-styleguide/
https://github.com/zh-google-styleguide/zh-google-styleguide/tree/master/google-cpp-styleguide
https://www.amazon.com/Software-Engineering-Google-Lessons-Programming/dp/1492082791 第8、9、10三章,分别讲coding style、code review和documentation
http://cdn.ttgtmedia.com/rms/editorial/Software_Engineering_at_Google_excerpt.pdf
https://arxiv.org/ftp/arxiv/papers/1702/1702.01715.pdf
coding guideline
https://google.github.io/styleguide/cppguide.html C++ (Google)
https://www.python.org/dev/peps/pep-0008/ Python (PEP8)