主要内容

本页采用了机器翻译。点击此处可查看最新英文版本。

MISRA C:2023 Rule 13.6

The operand of the sizeof operator shall not contain any expression which has potential side effects

自 R2024a 起

描述

规则定义

The operand of the sizeof operator shall not contain any expression which has potential side effects 1 .

理由

sizeof 操作符的参量通常不会在运行时进行评估。如果参量是一个表达式,您可能会错误地认为该表达式会被求值。

Polyspace 实现

如果 sizeof 运算符的操作数具有超出 sizeof 表达式的副作用,则规则检查器会报告违规。例如,如果 sizeof 操作符递增了一个全局变量,则规则检查器会报告一个违规。

故障排除

如果您预期会出现违规,但未看到该违规,请参阅诊断为何编码规范违规未按预期显示

示例

全部展开

#include <stddef.h>
int x;
int y[40];
struct S {
    int a;
    int b;
};
struct S myStruct;

void main() {
    size_t sizeOfType;
    sizeOfType = sizeof(x);         /* Compliant */
    sizeOfType = sizeof(y);         /* Compliant */
    sizeOfType = sizeof(myStruct);  /* Compliant */
    sizeOfType = sizeof(x++);       /* Non-compliant */
}

在此示例中,当表达式 x++ 被用作运算符 sizeof 的参量时,规则被违反。

检查信息

组:副作用
类别:必需
AGC 类别:必需

版本历史记录

在 R2024a 中推出


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.