喵喵锤锤你小可爱 2022-01-19 20:34 采纳率: 50%
浏览 23
已结题

有精通C标准的吗,为什么么一个文件里面一个全局变量初始化过后还可以在定义未初始化的

如图所示,为什么还能编译过?

#include <stdio.h>
int aaa=0,bbb=0,ccc=0;
int aaa,bbb,ccc;
int aaa,bbb,ccc;
int aaa,bbb,ccc;
int main()
{
   /*  Write C code in this online editor and run it. */
   printf("Hello, World! \n");
   aaa = 10;
   return 0;
}

img

  • 写回答

2条回答 默认 最新

  • _GX_ 2022-01-19 22:43
    关注

    代码中int aaa, bbb, ccc;叫做暂定的定义,相当于声明。 这是为了兼容标准C语言之前的旧代码,那时候编译器把多个重复定义的全局变量合并成一个。

    #include <stdio.h>
    int aaa = 0, bbb = 0, ccc = 0;  // external definitions
    int aaa, bbb, ccc;  // tentative definitions, act as declarations
    int aaa, bbb, ccc;  // tentative definitions, act as declarations
    int aaa, bbb, ccc;  // tentative definitions, act as declarations
    int main()
    {
        /*  Write C code in this online editor and run it. */
        printf("Hello, World! \n");
        aaa = 10;
        return 0;
    }
    

    From https://en.cppreference.com/w/c/language/extern#Tentative_definitions

    A tentative definition is an external declaration without an initializer, and either without a storage-class specifier or with the specifier static.

    A tentative definition is a declaration that may or may not act as a definition. If an actual external definition is found earlier or later in the same translation unit, then the tentative definition just acts as a declaration.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 1月31日
  • 已采纳回答 1月23日
  • 创建了问题 1月19日

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀