若有以下类W说明,则函数fConst的正确定义是()。class W { int a;public: void fConst(int& ) const;};
A.void W::fConst(int& k ) const { k = a;} B.void W::fConst(int& k ) const { k = a++;} C.void W::fConst(int& k ) const { cin>> a;} D.void W::fConst(int& k ) const { a = k;}