目录:
1. 东南融通集团Java面试笔试题
2. 厦门东南融通系统工程有限公司C++面试笔试题
3. 东南融通J2EE招聘笔试题
4. 东南融通各流程的面试问题
内容节选:
东南融通J2EE招聘笔试题
1. What will happen when you attempt to compile and run the following code?
public class Test {
static {
int x = 5;
}
static int x, y;
public static void main(String args[]) {
x--;
myMethod();
System.out.println(x + y + ++x);
}
public static void myMethod() {
y = x++ + ++x;
}
}
A. compiletime error
B. prints: 1
C. prints:2
D. prints: 3
E. prints: 7
F. prints: 8
2. Which of the following collection classes from java.util package are Thread safe? (Choose two)
A. Vector
B. ArrayList
C. HashMap
D. Hashtable
3. Which of the following types is primitive java type?(Choose two)
A String
B int
C char
D Short
、、、、、、