单项选择题

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

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