A.others
D.another
D.the others
D.the other
第1题:
第2题:
第3题:
声明并创建一个学生类Student的对象s,下列语法格式正确的是()。
A.Student s = Student();
B.Student s;
C.Student s = new Student();
D.Student s = new ();
第4题:
第5题:
类Teacher和Student都是类Person的子类 Person p; Teacher t; Student s; 若p,t和s都是非空值 if(t instanceof Person) { s = (Student)t; } 若默认new时声明的都是本类,这个语句导致的结果是()
A.将构造一个Student对象
B.表达式合法
C.编译时非法
D.编译时合法而在运行时可能非法
第6题:
要查询student表中name字段值以字符“m”开始,以字符“d”结束的记录应该在WHERE子句后跟 LIKE________。