网易2015校招JAVA工程师笔试题
时长:150分钟 总分:100分
175浏览 0人已完成答题
题型介绍
题型 | 单选题 | 多选题 | 简答题 |
---|---|---|---|
数量 | 5 | 2 | 4 |
检查程序,是否存在问题,如果存在指出问题所在,如果不存在,说明输出结果。
public class HelloB extends HelloA { public HelloB() { } { System.out.println("I’m B class") } static { System.out.println("static B") } public static void main(String[] args) { new HelloB() } } class HelloA { public HelloA() { } { System.out.println("I’m A class") } static { System.out.println("static A") } }
检查程序,是否存在问题,如果存在指出问题所在,如果不存在,说明输出结果。
package algorithms.com.guan.javajicu public class Inc { public static void main(String[] args) { Inc inc = new Inc() int i = 0 inc.fermin(i) i= i ++ System.out.println(i) } void fermin(int i){ i++ } }
检查程序,是否存在问题,如果存在指出问题所在,如果不存在,说明输出结果。
public class Example { String str = new String("good") char[] ch = {'a','b','c'} public static void main(String[] args) { Example ex = new Example() ex.change(ex.str, ex.ch) System.out.print(ex.str +"and") System.out.print(ex.ch) } public void change(String str, char ch[]){ str= "test ok" ch[0]= 'g' } }
有两个有序的集合,集合的每个元素都是一段范围,求其交集,例如集合{[4,8],[9,13]}和{[6,12]}的交集为{[6,8],[9,12]}。
一个文件中有10000个数,用Java实现一个多线程程序将这个10000个数输出到5个不用文件中。
检查程序,是否存在问题,如果存在指出问题所在,如果不存在,说明输出结果。
package algorithms.com.guan.javajicu public class Example { String str = new String(“good”) char[] ch = {‘a’, ’b’, ’c’} public static void main(String[] args) { Exampleex = new Example() ex.change(ex.str, ex.ch) System.out.print(ex.str + ” and ”) System.out.print(ex.ch) } public void change(Stringstr, char ch[]) { str = “test ok” ch[0] = 'g' } }