HOME ABOUT CONTACT

C/C++ static修飾詞

Rain May 22, 2023
Outline

簡介

修飾時機1: 函式

修飾時機2: 全域

修飾時機3: 類別

簡介top

static修飾詞在修飾不同的對象和位置時,各有不同的作用,以下分成三大類使用:

修飾時機1: 函式top

修飾時機2: 全域top

修飾時機3: 類別top

main.cpp:

class computer {
public:
    static void compute() {
        ...
    }
};
    
int main() {
    computer::compute();
    return 0;
}
                        

Last updated:

Related Artical List

  1. C/C++ const修飾詞
  2. C/C++ 命名空間

Article List