站内搜索: 请输入搜索关键词

当前页面: 开发资料首页Java 专题Jive学习文集

Jive学习文集

摘要: Jive学习文集

</td> </tr> <tr> <td width="291" height="35" valign="top" class="ArticleTeitle">
</td> <td width="393" valign="top" class="ArticleTeitle"> 收集了网上Jive学习的部分中文文章,是学习jive不可多得的资料。chm格式文档。

考考你(30)

Given the following code, write a line of code that, when inserted at the indicated location, will make the overriding method in Extension invoke the overridden method in class Base on the current object.

class Base {
public void print() {
System.out.println("base");
}
}
class Extention extends Base {
public void print() {
System.out.println("extension");
// insert line of implementation here
}
}
public class Q294d {
public static void main(String args[]) {
Extention ext = new Extention();
ext.print();
}
}

Fill in a single line of implementation.

点击查看答案

</td> </tr> <tr> <td height="25" colspan="2" valign="top" class="ArticleTeitle">


↑返回目录
前一篇: jive汉化版jdom2.5源码
后一篇: 一个多线程的经典例子(转载)