App下載

詞條

大約有 5,000 項(xiàng)符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項(xiàng)。(搜索耗時(shí):0.0042秒)

3701.heap 和 stack

java的內(nèi)存分為兩類 : - 堆內(nèi)存 heap - 棧內(nèi)存 stack stack 是指程序進(jìn)入一個方法時(shí), 會為這個方法單獨(dú)分配一塊私屬存儲空間, 用于存儲這個方法內(nèi)部的局部變量, 當(dāng)這個方法結(jié)束時(shí), 分配給這個方法的棧會釋放, 這個棧中的變量也將...

http://www.o2fo.com/java_interview_question/java_interview_question-wsf826qa.html

3702.HashMap 和 Hashtable

Hashtable是基于陳舊的Dictionary類的 HashMap是Java 1.2引進(jìn)的Map接口的一個實(shí)現(xiàn) Hashtable是線程安全的,也就是說是同步的 而HashMap是線程序不安全的,不是同步的 只有HashMap可以讓你將空值null作為一個表的條目的key或value. 但是 HashTable ...

http://www.o2fo.com/java_interview_question/java_interview_question-9e8x26qf.html

3703.如何實(shí)現(xiàn) muliti-thread?

...多個相同的程序代碼的線程去處理同一個資源 - 可以避免java中的單繼承的限制 - 增加程序的健壯性,代碼可以被多個線程共享,代碼和數(shù)據(jù)獨(dú)

http://www.o2fo.com/java_interview_question/java_interview_question-qy8g26ql.html

3704.Initialization and Cleanup

...始化。 對象創(chuàng)建過程: 1. 構(gòu)造器實(shí)際上也是靜態(tài)方法。Java 解釋器首先查找類路徑定位相應(yīng) class 文件。 2. 載入 class 文件,執(zhí)行靜態(tài)初始化,靜態(tài)初始化只在類對象首次加載的適合進(jìn)行一次。 3. 使用 new 創(chuàng)建對象時(shí)首先將在堆...

http://www.o2fo.com/java_interview_question/java_interview_question-1r8a26r6.html

3705.What are JSP declarations?

A declaration declares one or more variables or methods that you can use in Java code later in the JSP file. You must declare the variable or method before you use it in the JSP file. ``` <%! declaration; [ declaration; ]+ ... %> ```

http://www.o2fo.com/java_interview_question/java_interview_question-23hu26rp.html

3706.Scope for the < jsp : useBean > tag?

< jsp : useBean > tag is used to use any java object in the jsp page. a) page b) request c) session d) application

http://www.o2fo.com/java_interview_question/java_interview_question-og8d26rx.html

3707.JSP translation?

Conversion of the JSP Page into a Java Servlet. This class is essentially a servlet class wrapped with features for JSP functionality.

http://www.o2fo.com/java_interview_question/java_interview_question-9lkh26ry.html

3708.Ear, Jar 和 War 文件的區(qū)別?

- Jar files are intended to hold generic libraries of Java classes, resources, etc. - War files are intended to contain complete Web applications. - Ear files are intended to contain complete enterprise applications.

http://www.o2fo.com/java_interview_question/java_interview_question-og6h26rz.html

3709.什么是 Spring?

Spring 是 Java EE 的是一個輕量級的開源框架. 使 J2EE 開發(fā)更容易 通過實(shí)現(xiàn)基于POJO的編程模型 Spring 的核心 design pattern 是 IOC

http://www.o2fo.com/java_interview_question/java_interview_question-mekx26s3.html

3710.sorted 和 ordered collection

sorted collection是在內(nèi)存中通過 java 比較器進(jìn)行排序的 ordered collection是在數(shù)據(jù)庫中通過 order by 進(jìn)行排序的 建議使用 ordered collection 避免 OutOfMemoryError 問題.

http://www.o2fo.com/java_interview_question/java_interview_question-a4xp26t5.html

抱歉,暫時(shí)沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時(shí)沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

3701.heap 和 stack

java的內(nèi)存分為兩類 : - 堆內(nèi)存 heap - 棧內(nèi)存 stack stack 是指程序進(jìn)入一個方法時(shí), 會為這個方法單獨(dú)分配一塊私屬存儲空間, 用于存儲這個方法內(nèi)部的局部變量, 當(dāng)這個方法結(jié)束時(shí), 分配給這個方法的棧會釋放, 這個棧中的變量也將...

http://www.o2fo.com/java_interview_question/java_interview_question-wsf826qa.html

3702.HashMap 和 Hashtable

Hashtable是基于陳舊的Dictionary類的 HashMap是Java 1.2引進(jìn)的Map接口的一個實(shí)現(xiàn) Hashtable是線程安全的,也就是說是同步的 而HashMap是線程序不安全的,不是同步的 只有HashMap可以讓你將空值null作為一個表的條目的key或value. 但是 HashTable ...

http://www.o2fo.com/java_interview_question/java_interview_question-9e8x26qf.html

3703.如何實(shí)現(xiàn) muliti-thread?

...多個相同的程序代碼的線程去處理同一個資源 - 可以避免java中的單繼承的限制 - 增加程序的健壯性,代碼可以被多個線程共享,代碼和數(shù)據(jù)獨(dú)

http://www.o2fo.com/java_interview_question/java_interview_question-qy8g26ql.html

3704.Initialization and Cleanup

...始化。 對象創(chuàng)建過程: 1. 構(gòu)造器實(shí)際上也是靜態(tài)方法。Java 解釋器首先查找類路徑定位相應(yīng) class 文件。 2. 載入 class 文件,執(zhí)行靜態(tài)初始化,靜態(tài)初始化只在類對象首次加載的適合進(jìn)行一次。 3. 使用 new 創(chuàng)建對象時(shí)首先將在堆...

http://www.o2fo.com/java_interview_question/java_interview_question-1r8a26r6.html

3705.What are JSP declarations?

A declaration declares one or more variables or methods that you can use in Java code later in the JSP file. You must declare the variable or method before you use it in the JSP file. ``` <%! declaration; [ declaration; ]+ ... %> ```

http://www.o2fo.com/java_interview_question/java_interview_question-23hu26rp.html

3706.Scope for the < jsp : useBean > tag?

< jsp : useBean > tag is used to use any java object in the jsp page. a) page b) request c) session d) application

http://www.o2fo.com/java_interview_question/java_interview_question-og8d26rx.html

3707.JSP translation?

Conversion of the JSP Page into a Java Servlet. This class is essentially a servlet class wrapped with features for JSP functionality.

http://www.o2fo.com/java_interview_question/java_interview_question-9lkh26ry.html

3708.Ear, Jar 和 War 文件的區(qū)別?

- Jar files are intended to hold generic libraries of Java classes, resources, etc. - War files are intended to contain complete Web applications. - Ear files are intended to contain complete enterprise applications.

http://www.o2fo.com/java_interview_question/java_interview_question-og6h26rz.html

3709.什么是 Spring?

Spring 是 Java EE 的是一個輕量級的開源框架. 使 J2EE 開發(fā)更容易 通過實(shí)現(xiàn)基于POJO的編程模型 Spring 的核心 design pattern 是 IOC

http://www.o2fo.com/java_interview_question/java_interview_question-mekx26s3.html

3710.sorted 和 ordered collection

sorted collection是在內(nèi)存中通過 java 比較器進(jìn)行排序的 ordered collection是在數(shù)據(jù)庫中通過 order by 進(jìn)行排序的 建議使用 ordered collection 避免 OutOfMemoryError 問題.

http://www.o2fo.com/java_interview_question/java_interview_question-a4xp26t5.html

抱歉,暫時(shí)沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程