Java中的依赖注入和继承

发布于 2024-12-14 08:27:26 字数 644 浏览 2 评论 0原文

我有以下代码:

public class GrandParent {    
    public void greet() {
        System.out.println("Hello from grandpa.");
    }    
}

public class Parent extends GrandParent {    
    public void run() {
        greet();
    }                   
}

public class RunMe {       
    public static void main(String args[]) {
        Parent p = new Parent();
        p.run();
    }

    public void greet() {
        System.out.println("Hi.");
    }    
}

我的任务是编写 RunMe 类,并且尽可能不允许我修改 Parent 和 GrandParent 类。我怎样才能以这样的方式实现这一点:当执行到达Parent的run()时,执行RunMe(或者可能在另一个地方)的greet()而不是GrandParent的greet()。

或者这首先有可能吗?

I have the following code:

public class GrandParent {    
    public void greet() {
        System.out.println("Hello from grandpa.");
    }    
}

public class Parent extends GrandParent {    
    public void run() {
        greet();
    }                   
}

public class RunMe {       
    public static void main(String args[]) {
        Parent p = new Parent();
        p.run();
    }

    public void greet() {
        System.out.println("Hi.");
    }    
}

I am tasked to write the class RunMe and as much as possible, I am not allowed to modify classes Parent and GrandParent. How can I implement this in such a way that when execution reaches run() of Parent, the greet() of RunMe (or it could be in another place) is executed and not the greet() of GrandParent.

Or is this possible in the first place?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

青丝拂面 2024-12-21 08:27:26

如果您要让非扩展父对象调用不同的greet 方法而不更改父对象或祖父母代码,我不明白这怎么可能。

I don't see how this is possible if you are to have a non-extended Parent object call a different greet method without changing Parent or Grandparent code.

芸娘子的小脾气 2024-12-21 08:27:26

您可以在 RunMe 中编写一个实例(非静态)内部类,该内部类扩展 Parent 并覆盖 Parent 实例的 run() ,以便它调用 RunMe 实例的 run() 。您的 main() 方法将创建新子类的实例而不是父类。

You could write an instance (not static) inner class within RunMe that extends Parent and overrides Parent instance's run() such that it makes a call to the RunMe instance's run(). Your main() method would create an instance of the new subclass instead of Parent.

似梦非梦 2024-12-21 08:27:26

首先,您需要一个 RunMe 实例来调用其 run() 方法,因为这不是静态方法。挂钩 Parent 中发生的情况的一种方法是子类化 Parent

public static void main(String args[]) {
    final RunMe runMe = new RunMe();
    Parent p = new Parent() {
        public void run() {
            super.run(); // runs Parent.run()
            runMe.run(); // runs the hook function
        }
    };
    p.run();
}

我不知道这是否是您想要的。

First, you need an instance of RunMe to invoke its run() method, since that isn't a static method. One way to hook into what's happening in Parent is to subclass Parent:

public static void main(String args[]) {
    final RunMe runMe = new RunMe();
    Parent p = new Parent() {
        public void run() {
            super.run(); // runs Parent.run()
            runMe.run(); // runs the hook function
        }
    };
    p.run();
}

I have no idea if this is what you're after.

栖竹 2024-12-21 08:27:26

试试这个:

public class MyParent extends Parent {    
    @Override
    public void greet() {
        System.out.println("hello from MyParent");
    }                   
}

public class RunMe {       
    public static void main(String args[]) {
        Parent p = new MyParent();
        p.run();
    }
}

try this:

public class MyParent extends Parent {    
    @Override
    public void greet() {
        System.out.println("hello from MyParent");
    }                   
}

public class RunMe {       
    public static void main(String args[]) {
        Parent p = new MyParent();
        p.run();
    }
}
霓裳挽歌倾城醉 2024-12-21 08:27:26

我想你的意思是这样的:

public class RunMe extends Parent {
    public static void main(String args[]) {
        Parent p = new RunMe();
        p.run();
    }

    public void greet() {
        System.out.println("Hi.");
    }
}   

I think you meant this:

public class RunMe extends Parent {
    public static void main(String args[]) {
        Parent p = new RunMe();
        p.run();
    }

    public void greet() {
        System.out.println("Hi.");
    }
}   
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文