C++ Question: using
下面这段代码,运行结果会如何呢?
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <stdio.h> struct A { void f() { printf("A::fn"); } }; struct B : A { using A::f; // #1 void f() { printf("B::fn"); } // #2 }; int main() { B().f(); #3 return 0; } |
- A. B::f
- B. #1 编译错
- C. #2 编译错
- D. #3 编译错