Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
'id': het gebruik van lid als standaardparameter vereist statisch lid
Opmerkingen
Een niet-statisch lid wordt gebruikt als een standaardparameter.
Example
In het volgende voorbeeld wordt C2648 gegenereerd:
// C2648.cpp
// compile with: /c
class C {
public:
int i;
static int j;
void func1( int i = i ); // C2648 i is not static
void func2( int i = j ); // OK
};