1
私は完全にクラスのメンバーである静的関数の使用を理解しています。しかし、どのクラスにも関連していないか、またはグローバルに定義されている静的関数を使用する可能性があります。例:クラス内で関連/宣言されていない静的メンバー関数の使用方法を教えてください。
#include <iostream>
using namespace std;
static int func()
{
cout<<"This is a function";
}
int main()
{
/*Random code here*/
return 0;
}
名前空間スコープで 'static'は[internal linkage](http://stackoverflow.com/q/1358400/636019)を示します。 – ildjarn
[静的](https://stackoverflow.com/documentation/c%2b%2b/4891/keywords/18689/static#t=201611200648130483261) – Danh
少し詳細を教えてください。私は静的関数の初心者です。 –