单项选择题有如下类声明:class SAMPLE{int n;public:SAMPLE(int i=0):n(i){}void setValue(int n0);};下列关于getValue成员函数的实现中,正确的是______。
单项选择题有如下类定义:class Test{public:Test(){a=0;c=0;} ①int f(int a)const{this->a=a;) ②static int g (){return a;) ③void h(int b){Test::b=b;); ④private:int a;static int b;constint c;};int Test::b=0;在标注号码的行中,能被正确编译的是______。