提供者递归问题

发布于 2024-10-19 21:16:41 字数 758 浏览 3 评论 0原文

所以,我有类 Bar ,它应该包含 Bars 工厂。

class Bar {
    Collection<Bar> children;
    Bar(BarFactory factory, Foo1 foo, Foo2 foo2){

    }
    addChild(Foo1 foo1){
         children.add(factory.create(foo1));
    }
}
class BarFactory {
    Bar create(Foo1 foo1);
}

描述BarFactory时出现的问题。存在与其他对象相关的特定逻辑。我尝试使用 @Provides 机制,例如

@Provides
BarFactory provideLogicElementPresenterFactory(Dependence d){
    final BarFactory f = new BarFactory(){  
        @Override
        public Bar create(Foo1 foo1) {
            Foo2 foo2 = null;//some logic
            return new Bar(/*how pass factory here?*/f, foo1, foo2);
        }
    };
    return f;
}

如何描述这种递归结构或者这个问题有替代解决方案吗?

So, I have class Bar that should contains factory of Bars.

class Bar {
    Collection<Bar> children;
    Bar(BarFactory factory, Foo1 foo, Foo2 foo2){

    }
    addChild(Foo1 foo1){
         children.add(factory.create(foo1));
    }
}
class BarFactory {
    Bar create(Foo1 foo1);
}

The problem in describing BarFactory. There are specific logic with dependencies from other objects. I've tried to use @Provides mechanism, like

@Provides
BarFactory provideLogicElementPresenterFactory(Dependence d){
    final BarFactory f = new BarFactory(){  
        @Override
        public Bar create(Foo1 foo1) {
            Foo2 foo2 = null;//some logic
            return new Bar(/*how pass factory here?*/f, foo1, foo2);
        }
    };
    return f;
}

How to describe such recursive structure or there is alternative solution for this issue?

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

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

发布评论

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

评论(1

恋竹姑娘 2024-10-26 21:16:41

调用 Bar 构造函数时,使用 this 而不是 f

Use this instead of f in when invoking the Bar constructor.

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