In this case, there should be only one or zero instances of the static variable. It depends whether f() has been called or not.
void f()
{
static int a;
}
But how many instances of the static variable are there if f() is a method?
class A
{
void f()
{
static int a;
}
};