有如下程序: #include<iostream> using namespace std; class B public: B(int xx):x(xx)++count;x+=10; virtual void show()const cout<<count<<’_’<<x<<end1; protected: static mt count; private: int x; ; class D:public B public: D(int xx,int yy):B(xx),y(yy)++count;y+=100; virtual void show()const cout<<count<<’_’<<y<<end1; private: int y; ; int B::count=0; int main() B *ptr=new D(10,20); ptr—>show(); delete ptr; return 0;