C語言中static 函數

來源:互聯網
上載者:User

在C裡面,所謂 static ,只是限制在當前源檔案————這個只是對於編譯器/連結器而言。

但實際上,運行時,static和普通的extern 的函數/變數,沒有區別。

例如:使用函數指標/變數指標,完全可以訪問其他檔案的 static 變數/函數


file01.h
int * iptr01;
typedef void (* funcPtr)(void);
funcPtr pfun01;
----------------------------

file01.c
#include "file01.h"
static int ivar01 = 36;
int * iptr01 = &ivar01;

static void hwfun (void);
funcPtr pfun01 = &hwfun;

void hwfun (void)
{
printf("hello world\n");
}
-------------------------

file02.c
#include "file01.h"
............
//在某個代碼內
*iptr01 = 72;
//file01.c 中的ivar01  變為72;
pfun01();

//調用了file01.c 中的hwfun ,列印出hello world

函數的定義和聲明預設情況下是extern的,但靜態函數只是在聲明他的檔案當中可見,不能被其他檔案所用。
定義靜態函數的好處:
<1> 其他檔案中可以定義相同名字的函數,不會發生衝突
<2> 靜態函數不能被其他檔案所用。 儲存說明符auto,register,extern,static,對應兩種儲存期:自動儲存期和靜態儲存期。 auto和register對應自動儲存期。具有自動儲存期的變數在進入聲明該變數的程式塊時被建立,它在該程式塊活動時存在,退出該程式塊時撤銷。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.