下列选项中的接口声明正确的是______。A.interface Shape{...}B.abstract private interface Shape extends Area{...}C.private interface Shape{...}D.protected privated interface;
下列选项中的接口声明正确的是______。
A.interface Shape{...}
B.abstract private interface Shape extends Area{...}
C.private interface Shape{...}
D.protected privated interface;
相关考题:
( 32 )下面是类 Shape 的定义:class Shape{public:virtual void Draw()=0;};下列关于 Shape 类的描述中,正确的是A )类 Shape 是虚基类B )类 Shape 是抽象类C )类 Shape 中的 Draw 函数声明有误D )语句 “ Shape s; ” 能够建立 Shape 的一个对象 s
下面是类Shape的定义: class Shape{ public: virtual void Draw()=0; } 下列关于Shape类的描述中,正确的是( )。A.类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.语句“Shape s;”能够建立Shape的一个对象s
若有如下类定义:class Shape {public:virtual void Draw()=0;};则下列关于Shape类的叙述中,正确的是( )。 A. 类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.“Shape s;”能建立Shape的对象s
下面是类Shape的定义: classShape{ public: virtualvoidDraw( )=0; } 下列关于Shape类的描述中,正确的是( )。A.类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.语句“ShapeS;”能够建立Shape的一个对象S
39、下面是类Shape的定义:class Shape {public: virtual void Draw()=0; }; 下列关于Shape类的描述中,正确的是()。A.类Shape是虚基类B.类Shape是抽象类C.类Shape中的Draw函数声明有误D.语句“Shape s;”能够建立Shape的一个对象s
下列关于interface的说法正确的是:A.interface中可以有private方法B.interface中可以有final方法C.interface中可以有function实现D.interface可以继承其他interface
下列关于interface的说法正确的是:A.interface中可以有private方法B.interface中可以有final方法C.interface中可以有方法的具体实现D.interface可以继承其他interface