1、 JAVA如何实现多继承?
2、 写出下列程序的运行结果:
class Children
{
int num;
Children(int marker)
{
System.out.println(“Children(“ + marker + “)”);
}
}
class Parent
{
static Children child1 = new Children(1);
Parent();
{
System.out.println(“Parent()”);
Child3 = new Children(33);
}
Children child2 = new Children(2);
Void relation()
{
System.out.println(“relation()”);
}
static Children child3 = new Children(3);
}
public class ObjectInit1
{
Parent.child3.num = 1;
System.out.println(“main begins”);
Parent mother = new Parent();
Mother.relation();
}
3、 根据一下需求编写代码:建立一个名字叫myException的异常类,在自定义一个类中的throw1方法中抛出myException类,并在throw2方法中截获这个异常,并抛出到控制台。程序必须完整并可在机器上调试运行。
4、 描述以下四种UML元素各代表什么意思?有什么不同:
5、 简单描绘RUP的工作流程和阶段:
6、 什么是模式?举例说明一个简单的工厂模式
7、 简单说明Ant的作用:
8、 简单说明Junit的作用;