首页 > 代码库 > 在XX公司工作第二天,维护已有代码
在XX公司工作第二天,维护已有代码
依据《C++ More Exception》所述的规则:
Rule #1: Never write using-directives in header files.
Rule #2: Never write namespace using-declarations in header files.
Rule #3: In implementation files, never use a using-declaration or a using-directive before #include directive.
Rule #4: Use C headers with the new style #include <cheader> instead of the old style #include <header.h>.
1.今天我把我负责的代码所有头文件中的using命令和声明全部移动到实现文件中,并在实现文件中将using放置在所有头文件的后面。
2.去除了关于std空间的前向声明
3.给变量起了一个更好的名字
备注一下:前向声明其他命名空间形式如下
namespace android{
class TouchInputMapper; (类)
template <typename T> class Singleton;(模版)
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。