當前位置:學問谷 >

職場範例 >面試 >

華為的JAVA面試題

華為的JAVA面試題

華為的JAVA面試題(後記:沒有想到華為的面試題就是非同一般,很多題不是一眼就能夠看得出來,至少對我這種鳥來説是這樣。對我個人來説,看看這樣的題,可能比看《Think In Java》都還要好,因為這裏面有很多的東西,都是我們平時沒有太在意,或者是隻是懂一點皮毛而已,通過做一下這樣的練習,把自己不知道、不熟悉的知識點,利用這個機會好好的鞏固一下。這些答案是我自己做的,有一些是從網上來的,有一部是自己做的,並且還有一部份沒有做完,我不敢保證都對,所以請你在引用的時候,務必通過自己核對一下。當然,我既然能夠把這些答案放在這裏,那説明我肯定是自己檢驗了一遍的,也不是那麼恐怖的)QUESTION NO: 1publicclassTest1 {publicstaticvoidchangeStr(String str){ str="welcome"; }publicstaticvoidmain(String[] args) { String str="1234";changeStr(str); tln(str); } } //輸出結果:1234 //這裏雖然是一個靜態方法,但是裏面的.變量是一個局部變量, //所以這裏不因為是靜態方法,就誤認為裏面的變量也是靜態變量了QUESTION NO:2publicclassTest2 {staticbooleanfoo(charc) { t(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 r(); // At line 8 D. new r(); // At line 8//new Outer() Inner() 答案如下:publicclassOuter {publicvoidsomeOuterMethod() { // Line 3newInner();//放在這裏不出錯 }publicclassInner { }publicstaticvoidmain(String[] argv) { Outer o=newOuter(); // Line 8 //o不能夠被解釋成為一種類型,出錯 //new r(); //new r(); //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 TION NO: 6Which two are equivalent? (Choose two) A.

華為的JAVA面試題

標籤: 面試題 java 華為
  • 文章版權屬於文章作者所有,轉載請註明 https://xuewengu.com/flzc/mianshi/w22r7r.html