主要内容

MISRA C++:2023 Rule 6.5.1

A function or object with external linkage should be introduced in a header file

自 R2024b 起

描述

A function or object with external linkage should be introduced in a header file. 1

理由

如果您在头文件中声明一个函数或对象,那么很显然您打算在多个翻译单元中访问该函数或对象。如果您打算在单个翻译单元中访问该函数或对象,请将其声明为 static 或在未命名的命名空间中进行声明。

故障排除

如果您预期会出现违规,而 Polyspace® 未报告该违规,请参阅诊断为何编码规范违规未按预期显示

示例

全部展开

此示例使用两个文件:

  • decls.h:

    extern int x;
  • file.cpp:

    #include "decls.h"
    
    int x = 0;
    int y = 0; //Noncompliant
    static int z = 0;

在此示例中,在头文件中声明了变量 x,但未在其中声明变量 y。变量 z 也没有在头文件中声明,而是使用 static 设定符声明,并且没有外部链接。

检查信息

组:基本概念
类别:建议
PQL 名称:std.misra_cpp_2023.R6_5_1

版本历史记录

在 R2024b 中推出


1 All MISRA coding rules and directives are © Copyright The MISRA Consortium Limited 2021.

The MISRA coding standards referenced in the Polyspace Bug Finder™ documentation are from the following MISRA standards:

  • MISRA C:2004

  • MISRA C:2012

  • MISRA C:2023

  • MISRA C++:2008

  • MISRA C++:2023

MISRA and MISRA C are registered trademarks of The MISRA Consortium Limited 2021.