赞题库-背景图
多项选择题

航海上常用的定位方法还有______等。
Which are following usually used to fix the vessel.

A.A 航迹推算 Dead Reckoning
B.路标定位 fix by landmark
C.天文定位 fix by celestial body
D.卫星定位 fix by satellite.
<上一题 目录 下一题>
热门试题

单项选择题假定AB为一个类,则执行AB x(y);语句时将自动调用该类的:

A.有参构造函数
B.无参构造函数
C.复制构造函数
D.赋值构造函数

多项选择题下列代码的说法正确的是: class Cell{ public int row; public Cell(int row){} public void drop(int row){} public void move(int row){ System.out.print( 移动一行 ); } } public class Tetromino extends Cell{ public Cell(int row){} 重写子类的构造器 public void drop(int row){} 重写父类的drop方法 public void move(int row){ 重写父类的move方法 drop(); } } A. 注释为重写子类的构造器语法正确 B. 注释为重写子类的构造器语法错误 C. 注释为重写父类的drop方法语法正确 D. 注释为重写父类的move方法语法正确