那些班级之间的关系应该是什么?

时间:2014-07-19 06:51:42

标签: java

我希望只需调用Type.getNo()方法来获得一些计算结果。如果if then else中的Type.getNo()阻止"从TypeX.getNo()"中获取数据,则会在内部调用TypeX.getNo();之后,它的结果将发送到Type.getNo(),从那时起,Type.getNo()会将值返回给用户。在第二种情况下,将使用TypeY.getNo()的结果。

对于班级关系,这些班级之间的关系应该是什么?我认为似乎是extends关系,但我对如何实现场景感到有些困惑。为了推进我的项目,我应该使用Design Pattern来实现这个目标吗?如果是,哪种设计模式适合这种情况?我觉得chain of responsibility看起来想修复,但在chain of responsibility中,决定是在第三个类上完成的,在我的情况下,它应该在另一个包中。另一方面,所有决定都应该在同一个班级完成。只是返回值将在其他包中提供。

                        |--------------------|
                        |       Type         |
                        |--------------------|
                        |    +getNo():int    |
                        |                    |
                        |--------------------|



  |------------------|                    |----------------------|
  |      TypeX       |                    |        TypeY         |
  |------------------|                    |----------------------|
  |                  |                    |                      |
  |  +getNo():int    |                    |      +getNo():int    |
  |                  |                    |                      |
  |------------------|                    |----------------------|

     TypeX and TypeY are visible to only to other classes in the same package

1 个答案:

答案 0 :(得分:0)

使用抽象类Type和扩展TypeX的两个TypeYType类。

Type

abstract class Type {

    int no;

    int getNo() {
        return no;
    }
}

TypeX

public class TypeX extends Type {

    public TypeX(int no) {
        this.no = no;
    }

    @Override
    int getNo() {
        System.out.println("TypeX.getNo()");
        return no;
    }
}

TypeY

public class TypeY extends Type {

    public TypeY(int no) {
        this.no = no;
    }

    @Override
    int getNo() {
        System.out.println("TypeY.getNo()");
        return no;
    }
}

App

public class App {

    public static void main(String[] args) {
        Type x = new TypeX(1);
        Type y = new TypeY(2);

        System.out.println(x.getNo());
        System.out.println(y.getNo());
    }
}

输出:

TypeX.getNo()
1
TypeY.getNo()
2