选择题
有如下程序:
#include<iostream>
using namespace std;
class Instrument {
public:
virtual void Display()=0;
};
class Piano: public Instrument {
public:
void Display() {/*函数体略*/}
};
int main() {
Instrument s;
Instrument*P=0;
//…;
return 0;
}
下列叙述中正确的是______。