命名空间
变体
操作

函数

来自 cppreference.com
< c‎ | 语言

函数是 C 语言的一种结构,它将一个复合语句(函数体)与一个标识符(函数名)关联起来。每个 C 程序都从main 函数开始执行,该函数要么终止,要么调用其他用户定义的函数或库函数。

// function definition.
// defines a function with the name "sum" and with the body "{ return x+y; }"
int sum(int x, int y) 
{
    return x + y;
}

函数由函数声明函数定义引入。

函数可以接受零个或多个参数,这些参数从函数调用运算符参数初始化,并可以通过return 语句向调用者返回值。

int n = sum(1, 2); // parameters x and y are initialized with the arguments 1 and 2

函数体在函数定义中提供。每个内联(自 C99 起)函数在表达式中使用时(除非未计算)必须在一个程序中仅定义一次

没有嵌套函数(除非通过非标准编译器扩展允许):每个函数定义必须出现在文件范围内,并且函数无法访问调用者的局部变量。

int main(void) // the main function definition
{
    int sum(int, int); // function declaration (may appear at any scope)
    int x = 1;  // local variable in main
    sum(1, 2); // function call
 
//    int sum(int a, int b) // error: no nested functions
//    {
//        return  a + b; 
//    }
}
int sum(int a, int b) // function definition
{
//    return x + a + b; //  error: main's x is not accessible within sum
    return a + b;
}

[编辑] 参考文献

  • C17 标准(ISO/IEC 9899:2018)
  • 6.7.6.3 函数声明符(包括原型)(p: 96-98)
  • 6.9.1 函数定义(p: 113-115)
  • C11 标准(ISO/IEC 9899:2011)
  • 6.7.6.3 函数声明符(包括原型)(p: 133-136)
  • 6.9.1 函数定义(p: 156-158)
  • C99 标准(ISO/IEC 9899:1999)
  • 6.7.5.3 函数声明符(包括原型)(p: 118-121)
  • 6.9.1 函数定义(p: 141-143)
  • C89/C90 标准(ISO/IEC 9899:1990)
  • 3.5.4.3 函数声明符(包括原型)
  • 3.7.1 函数定义

[编辑] 另见

C++ 文档 for 声明函数