单项选择题

应在下面程序下划线中填写的正确的语句是( )。
#include <iostream>
using namespace std;
class A
public:
void test()cout<< "this is A!";

class B:public A
void test()
______ //显示调用基类函数test()
cout<< "this is B!";


void main()

A.A::test()
B.test()
C.B::test()
D.this->test()