全国软考程序员考试部分例题(1) |
| 论文作者:佚名 论文来源:不详 论文发布时间:2006-6-9 2:20:28 论文发布人:chjchjchj |
减小字体
增大字体
例题1:
Choose the three valid identifiers from those listed below.
A. IDoLikeTheLongNameClass
B. $byte
C. const
D. _ok
E. 3_case
解答:A, B, D
点评:Java中的标示符必须是字母、美元符($)或下划线(_)开头。关键字与保留字不能作为标示符。选项C中的const是Java的保留字,所以不能作标示符。选项E中的3_case以数字开头,违反了Java的规则。
例题2:
How can you force garbage collection of an object?
A. Garbage collection cannot be forced
B. Call System.gc().
C. Call System.gc(), passing in a reference to the object to be garbage collected.
D. Call Runtime.gc().
E. Set all references to the object to new values(null, for example).
解答:A
点评:在Java中垃圾收集是不能被强迫立即执行的。调用System.gc()或Runtime.gc()静态方法不能保证垃圾收集器的立即执行,因为,也许存在着更高优先级的线程。所以选项B、D不正确。选项C的错误在于,System.gc()方法是不接受参数的。选项E中的方法可以使对象在下次垃圾收集器运行时被收集。
例题3:
Consider the following class:
1. class Test(int i) {
2. void test(int i) {
3. System.out.println(“I am an int.”);
4. }
5. void test(String s) {
6. System.out.println(“I am a string.”);
7. }
8.
9. public static void main
|
|
|
|
|
|
| ∷相关试题评论 |
(评论内容只代表网友观点,与本站立场无关!) [查看发表评论...] | |
|
|
|
|
站内广告 |
| |
|
站内搜索 |
| |
栏目导航 |
| |
|
|
相关试题 |
 |
|
本月热门 |
| |
|
|
本日热门 |
| |
|
|
|