Vintion's blog

~夜黑路滑,社会复杂~

Google_c++编程规范图

| Comments

Google C++ Style Guide

觅得神图一张,尽解Google C++ Style Guide

制作精美,详尽得当,不可多得

感谢原作者voidccc

原图(可另存)

总结一下
    1. 文件名小写,可有下划线或短线,扩展为.cc
    1. 开关加版权,许可证,作者,说明..
    1. .h文件顺序:本类的.h,C系统文件,C++系统文件,其它库,本项目头文件,避免用../.开关,要绝对路径指示.h
    1. 禁止使用using namespace xx,而用using std::string

Comments