- 相關推薦
華為的JAVA面試題
華為的JAVA面試題(后記:沒有想到華為的面試題就是非同一般,很多題不是一眼就能夠看得出來,至少對我這種鳥來說是這樣。對我個人來說,看看這樣的題,可能比看《Think In Java》都還要好,因為這里面有很多的東西,都是我們平時沒有太在意,或者是只是懂一點皮毛而已,通過做一下這樣的練習,把自己不知道、不熟悉的知識點,利用這個機會好好的鞏固一下。這些答案是我自己做的,有一些是從網上來的,有一部是自己做的,并且還有一部份沒有做完,我不敢保證都對,所以請你在引用的時候,務必通過自己核對一下。當然,我既然能夠把這些答案放在這里,那說明我肯定是自己檢驗了一遍的,也不是那么恐怖的)QUESTION NO: 1publicclassTest1 {publicstaticvoidchangeStr(String str){ str="welcome"; }publicstaticvoidmain(String[] args) { String str="1234";changeStr(str); System.out.println(str); } } //輸出結果:1234 //這里雖然是一個靜態方法,但是里面的變量是一個局部變量, //所以這里不因為是靜態方法,就誤認為里面的變量也是靜態變量了QUESTION NO:2publicclassTest2 {staticbooleanfoo(charc) { System.out.print(c);returntrue; }publicstaticvoidmain(String[] argv) {inti = 0; //for(65;88&&(i<2);67) for(foo(A);foo(B) && (i < 2);foo(C)) { i++;foo(D); } } }QUESTION NO: 31. class A { 2. protected int method1(int a, int b) { return 0; } 3. } Which two are valid in a class that extends class A? (Choose two) A. public int method1(int a, int b) { return 0; } B. private int method1(int a, int b) { return 0; } C. private int method1(int a, long b) { return 0; } D. public short method1(int a, int b) { return 0; } E. static protected int method1(int a, int b) { return 0; }publicclassBextendsA{ //can not reduce the visibility of the inherited method from A //即不能夠使從類A中繼續來的方法的可見性降低 //private int method1(int a, int b) { return 0; } //This static method cannot hide the instance method from A //靜態方法不能夠隱藏繼承于A的實例 //static protected int method1(int a, int b) { return 0; } //返回類型與A中的該方法不一致 //public short method1(int a, int b) { return 0; } //這里是寫了一個重載方法,因為參數類型不一致,不會報錯privateintmethod1(inta,longb) {return0; } //可見性可以增大,但是不能夠縮小,正確publicintmethod1(inta,intb) {return0; }publicstaticvoidmain(String[] args) { //TODOAuto-generated method stub } }QUESTION NO: 41. public class Outer{ 2. public void someOuterMethod() { 3. // Line 3 4. } 5. public class Inner{} 6. public static void main( String[]argv ) { 7. Outer o = new Outer(); 8. // Line 8 9. } 10. } Which instantiates an instance of Inner? A. new Inner(); // At line 3 B. new Inner(); // At line 8 C. new o.Inner(); // At line 8 D. new Outer.Inner(); // At line 8//new Outer().new Inner() 答案如下:publicclassOuter {publicvoidsomeOuterMethod() { // Line 3newInner();//放在這里不出錯 }publicclassInner { }publicstaticvoidmain(String[] argv) { Outer o=newOuter(); // Line 8 //o不能夠被解釋成為一種類型,出錯 //new o.Inner(); //new Outer.Inner(); //new Inner(); } }QUESTION NO: 5Which method is used by a servlet to place its session ID in a URL that is written to the servlet’s response output stream? (譯:那個方法是servlet用于將其session ID入在一個URL中,該URL寫入servlet的響應輸出流) A. The encodeURL method of the HttpServletRequest interface. B. The encodeURL method of the HttpServletResponse interface. C. The rewriteURL method of the HttpServletRequest interface. D. The rewriteURL method of the HttpServletResponse interface.QUESTION NO: 6Which two are equivalent? (Choose two) A.
【華為的JAVA面試題】相關文章:
親歷華為面試06-18
華為面試經歷06-18
華為新員工報到Q&A(華為入職須知)04-27
華為面試問題03-24
華為幾號發工資04-19
華為都有哪些部門02-28
華為資格面試內容08-10
Java實習報告09-20
華為d2怎么樣,華為d2好嗎?08-01
c面試題08-04