单项选择题

下列程序段中包含4个函数,其中具有隐含this指针的是( )。
int funl();
class Test
public:
int fun2();
friend int fun3();
static int fun4();

A.fun1
B.fun2
C.fun3
D.fun4