关于我在say函数加了一个static却可以过

来源:5-13 内部函数与外部函数

慕标1528459

2019-10-03 22:02

这是hello.c的文件

#include <stdio.h>

#include "test.c"   //引用test.c文件

extern void printLine()     //这里定义的方法对吗?

{

   printf("**************\n");   

}

int main()

{

    say();

    return 0;

}

这个是text.c的文件

#include <stdio.h>

static void say(){

    printLine();

    printf("I love imooc\n");

    printf("good good study!\n");

    printf("day day up!\n");

    printLine();

}

按他讲的我给say加一个static, 不是应该hello.c也无法引用吗,

为啥这个可以过


写回答 关注

1回答

  • qq_慕数据2265035
    2019-10-05 23:39:25

    #include "test.c"作用就是被引入到hello.c,引入进去相当与hello.c的一部分,所以将say()改为static,调用内部函数。懂了不哥们

C语言入门

C语言入门视频教程,带你进入编程世界的必修课-C语言

926020 学习 · 20793 问题

查看课程

相似问题