有如下类的定义:
int F1(); static int F2(); class TestClass { public: int F3(); static int F4(); };
在所描述的函数中,具有隐含this指针的是哪个(C) A F1 B F2 C F3 D F4