题目内容

写出下面程序的运行结果(注意大小写、空格和英文符号)publicclassABC{publicstaticvoidmain(Stringargs[]){ABs=newAB("Hello!","IloveJAVA.");System.out.println(s.toString());}}classAB{Strings1;Strings2;publicAB(Stringstr1,Stringstr2){s1=str1;s2=str2;}publicStringtoString(){returns1+s2;}}

查看答案
更多问题

关于static关键字,下面说法正确的是:

A. 用static修饰的成员变量是属于对象的数据结构
B. 在static方法中,可以访问非static成员(对象成员)
C. static成员变量存储在堆中
D. 一个类的static成员变量只有“一份”,无论该类创建了多少对象

关于Java对象的删除,下列说法正确的是:

A. 必须由程序员完成对象的清除
B. Java把没有引用的对象作为垃圾收集起来并释放
C. 只有当程序中调用System.gc()方法时才能进行垃圾收集
D. Java中的对象都很小,一般不进行删除操作

程序执行的结果是: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);

答案查题题库