程序执行的结果是:publicclassCellGame{Stringname="俄罗斯方块";publicCellGame(Stringname){name=name;}publicstaticvoidmain(String[]args){CellGamecg=newCellGame("Tetris");System.out.println(cg.name);}}
A. null
B. 俄罗斯方块
C. Tetris
D. ""
给出下面的代码段:public class Cell{int row;int col;int height;int width;public Cell(int row,int col){this.row=row;this.col=col;}public Cell(int row,int col,int height,int width){<插入代码>this.height=height;this.width=width;}}在<插入代码>处写下如下代码,正确的是:
A. Cell(row,col);
B. super(row,col);
C. this.row=row,this.col=row;
D. this(row,col);
关于public和private,下面说法错误的是:
A. private修饰的成员变量和方法仅仅只能在本类中访问
B. public修饰的成员变量和方法可以在任何地方访问
C. private修饰的成员变量和方法可以在本类和子类中访问
D. public修饰的成员变量和方法只能在同一个包中访问
请看下列代码:public class Cell{static void move(){/*more code here.*/}void drop(){/*more code here.*/}}下列说法正确的是:
A. Cell. drop()是调用drop方法的正确方式
B. Cell.move()是调用move方法的正确方式
C. drop方法可以直接调用move方法
D. move方法可以盲接调用drop方法