用友2018秋招Java笔试题(五)
时长:120分钟 总分:100分
158浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 判断题 | 简答题 |
---|---|---|---|---|
数量 | 3 | 7 | 4 | 2 |
以下代码的运行结果是什么( ) class Supp...
class Supper{ public int get() { System.out.println("Supper") return 5 } } public class Sub{ public int get() { System.out.println("Sub") return new Integer("5") } public static void main(String args[]) { new Supper().get() new Sub().get() } }
以下JAVA程序的运行结果是什么( ) publ...
public static void main(String[] args) { Object o1 = true ? new Integer(1) : new Double(2.0) Object o2 if (true) { o2 = new Integer(1) } else { o2 = new Double(2.0) } System.out.print(o1) System.out.print(" ") System.out.print(o2) }
关于下面程序,哪些描述是正确的: ( ) ...
public class While { public void loop() { int x= 10 while ( x ) { System.out.print("x minus one is " + (x - 1)) x -= 1 } } }
根据下面这个程序的内容,判断哪些描述是正确的:( ) publi...
public class Test { public static void main(String args[]) { String s = "tommy" Object o = s sayHello(o) //语句1 sayHello(s) //语句2 } public static void sayHello(String to) { System.out.println(String.format("Hello, %s", to)) } public static void sayHello(Object to) { System.out.println(String.format("Welcome, %s", to)) } }
下面哪些描述是正确的:( ) public ...
public class Test {
public static class A {
private B ref
public void setB(B b) {
ref = b
}
}
public static Class B {
private A ref
public void setA(A a) {
ref = a
}
}
public static void main(String args[]) {
…
start()
….
}
public static void start() { A a = new A()
B b = new B()
a.setB(b)
b = null //
a = null
…
}
}
关于下面这段Java程序,哪些描述是正确的:( ) public...
public class ThreadTest extends Thread { public void run() { System.out.println("In run") yield() System.out.println("Leaving run") } public static void main(String []argv) { (new ThreadTest()).start() } }
JSON是一种非常流行的文本格式的数据编码方式,下面有一个Java类Per...
public class Person { private String name private int age private boolean married public Person(String name, int age, boolean married) { this.name = name this.age = age this.married = married } public String getName() { return name } public void setName(String n) { this.name = n } public void setAge(int a) { this.age = a } public int getAge() { return age } public void setMarried(boolean flag) { this.married = flag } public isMarried() { return married } }
Person[] ps = new Person[] {new Person(“tommy”, 16, false”)}
用JSON表式出来(JSON种不用表示类型信息,只表示结构信息即可)
SQL性能优化 Customer表定义如下 CREATE TABLE `t...
Customer表定义如下
CREATE TABLE `test01` (
custid` int(10) NOT NULL,
custname` varchar(100) NOT NULL,
date` datetime default NULL,
money` int(10) default NULL,
PRIMARY KEY (`custid`),
KEY `index_test01_custname` (`custname`),
KEY `index_test01_custname_union` (`money`,` date`,`custname`,),
)
secondinfo 表定义如下
CREATE TABLE `test02` (
secid` int(10) NOT NULL,
firstid` int(10) NOT NULL,
custid` int(10) default NULL,
PRIMARY KEY (`secid`),
KEY `Index_test02_custid` (`custid `)
)
union
select * from test01 where date >’20150101’