【问题标题】:Call Subclasses' Method Depending on Object Type in JavaJava中根据对象类型调用子类的方法
【发布时间】:2016-01-04 18:41:11
【问题描述】:

问题:根据传递的参数类型,动态选择相应的子类并调用其方法。

研究:努力将the generics approach 应用于任务:

public abstract class MetaContainer
  extends Node {

  public static abstract interface CommonContainer {
    ObservableList<Object> getChildren(Object container);
  }

  public abstract class AnchorPaneContainer
    extends AnchorPane
    implements CommonContainer {

    public ObservableList<Object> getChildren(Object container) {
      // Special approach for AnchorPanes.
    }
  }

  public abstract class TabPaneContainer
    extends TabPane
    implements CommonContainer {

    public ObservableList<Object> getChildren(Object container) {
      // Special approach for TabPanes.
    }
  }
}

我尝试使用这样的类(并得到错误,因为 CommonContainer 是一个接口,不能有静态方法):

  private ObservableList<Node> getElements(Node container)
    throws ClassNotFoundException {

    ObservableList<Node> nodes = FXCollections.observableArrayList();
    ObservableList<Object> objects = FXCollections.observableArrayList();

    objects.addAll(
      MetaContainer.CommonContainer.
      getChildren(
        (Object) container));

    for (Object object : objects) {
      nodes.add(
        (Node) object);
    }

    return nodes;
  }

问题:我怎样才能在整个MetaContainer 上调用getChildren() 并在参数中传递任何类型的容器,等待它在容器类型的子类中处理正确的getChildren()

解释:简而言之,我需要向下浏览节点容器以寻找简单的控件。所以你事先不知道是什么类型的节点——只有在迭代时是动态的。一些子节点是也必须浏览的容器,但每种类型都需要特定的方法。我可以在类型上做一些类似 switch-case 的事情,但我觉得应该为每种类型做一些更优雅的事情,比如为每种类型和一个通用接口设置子类。

【问题讨论】:

  • 我不懂设计。 Object container 参数是干什么用的?为什么容器的 getChildren() 方法需要容器作为参数?
  • 你的问题很不清楚。也许你可以举一个例子来说明你想如何使用这种设计(即你想编写的使用这些类型的对象的代码示例)。
  • 简而言之,我需要向下浏览节点容器以寻找简单的控件。所以你事先不知道是什么类型的节点——只有在迭代时是动态的。一些子节点是也必须浏览的容器,但每种类型都需要特定的方法。我可以在类型上做一些类似 switch-case 的事情,但我觉得应该为每种类型做一些更优雅的事情,比如为每种类型和一个公共接口做子类。

标签: java generics types javafx casting


【解决方案1】:

好吧,让我试一试,虽然我仍然不知道我是否真的理解这个问题。我认为您想通过以不同方式获取不同Parent 子类的子节点(即不一定只是通过调用Parent.getChildrenUnmodifiable())来获取场景图的子集。因此,如果它是一个简单的Pane,您只需调用getChildren(),但如果它是一个TabPane,您将获取每个Tab 并获取每个选项卡的内容,从中形成一个集合。 (对于其他“容器类型控件”也是如此,例如SplitPane 等)如果它是一个“简单”控件,您不会认为它有任何子节点(即使在幕后,@例如,987654331@ 包含Text)。

所以我认为您可以通过构建一个类型安全的异构容器来做到这一点(参见 Josh Bloch 的 Effective Java),该容器将特定节点类型 N 映射到 Function&lt;N, List&lt;Node&gt;&gt;。该函数将定义如何检索该类型的子节点。

这可能看起来像

public class ChildRetrievalMapping {

    public static final ChildRetrievalMapping DEFAULT_INSTANCE = new ChildRetrievalMapping() ;

    static {
        // note the order of insertion is important: start with the more specific type

        DEFAULT_INSTANCE.put(TabPane.class, tabPane -> 
                tabPane.getTabs().stream().map(Tab::getContent).collect(Collectors.toList()));
        DEFAULT_INSTANCE.put(SplitPane.class, SplitPane::getItems);
        // others...

        // default behavior for "simple" controls, just return empty list:
        DEFAULT_INSTANCE.put(Control.class, c -> Collections.emptyList());

        // default behavior for non-control parents, return getChildrenUnmodifiable:
        DEFAULT_INSTANCE.put(Parent.class, Parent::getChildrenUnmodifiable);


        // and for plain old node, just return empty list:
        DEFAULT_INSTANCE.put(Node.class, n -> Collections.emptyList());
    }

    private final Map<Class<?>, Function<? ,List<Node>>> map = new LinkedHashMap<>();

    public <N extends Node> void put(Class<N> nodeType, Function<N, List<Node>> childRetrieval) {
        map.put(nodeType, childRetrieval);
    }

    @SuppressWarnings("unchecked")
    public <N extends Node> Function<N, List<Node>> getChildRetrieval(Class<N> nodeType) {
        return (Function<N, List<Node>>) map.get(nodeType);
    }

    @SuppressWarnings("unchecked")
    public List<Node> firstMatchingList(Node n) {
        for (Class<?> type : map.keySet()) {
            if (type.isInstance(n)) {
                return getChildRetrieval((Class<Node>) type).apply(n);
            }
        }
        return Collections.emptyList();
    }
}

现在您只需调用childRetrievalMapping.findFirstMatchingList(node);,它就会在映射中与节点匹配的第一种类型定义的意义上获取子列表。所以,使用DEFAULT_INSTANCE,如果你传递一个TabPane,它会得到所有的内容节点;如果你给它一个SplitPane,它会得到物品;如果你传递给它另一种类型的控件,它会返回一个空列表,等等。

这是一个使用它的例子。这只是构建了一个场景图,然后当你按下按钮时,它会遍历它,只得到上面类中策略定义的“简单”节点。 (然后它选择Labeled 的所有实例并将getText() 的结果传递给系统控制台。)注意它如何(故意)避免标签本身的实现,这是一个天真的@987654323 @ 不会这样做。

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Consumer;
import java.util.function.Function;
import java.util.stream.Collectors;

import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Control;
import javafx.scene.control.Label;
import javafx.scene.control.Labeled;
import javafx.scene.control.SplitPane;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.control.TextField;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class PerformActionOnNodeTypes extends Application {

    @Override
    public void start(Stage primaryStage) {
        VBox root = new VBox(5, 
                new Label("Label 1"),
                new HBox(5, new Label("Label 2"), new Button("Button 1")),
                new HBox(5, new TextField("Some text"), new ComboBox<String>()),
                new TabPane(new Tab("Tab 1", new VBox(new Label("Label in tab 1"))),
                        new Tab("Tab 2", new StackPane(new Button("Button in tab 2")))));

        Button button = new Button("Show labeled's texts");
        button.setOnAction(e -> {
            List<Node> allSimpleNodes = new ArrayList<>();
            findAllSimpleNodes(allSimpleNodes, root);
            doAction(allSimpleNodes, Labeled.class, (Labeled l) -> System.out.println(l.getText()));
        });

        root.setAlignment(Pos.CENTER);
        BorderPane.setAlignment(button, Pos.CENTER);
        Scene scene = new Scene(new BorderPane(root, null, null, button, null), 600, 600);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    private void findAllSimpleNodes(List<Node> allSimpleNodes, Node n) {
        List<Node> children = ChildRetrievalMapping.DEFAULT_INSTANCE.firstMatchingList(n);
        allSimpleNodes.addAll(children);
        for (Node child : children) {
            findAllSimpleNodes(allSimpleNodes, child);
        }
    }

    private <T> void doAction(Collection<Node> nodes, Class<T> type, Consumer<T> action) {
        nodes.stream()
            .filter(type::isInstance)
            .map(type::cast)
            .forEach(action);
    }

    public static class ChildRetrievalMapping {

        public static final ChildRetrievalMapping DEFAULT_INSTANCE = new ChildRetrievalMapping() ;

        static {
            // note the order of insertion is important: start with the more specific type

            DEFAULT_INSTANCE.put(TabPane.class, tabPane -> 
                    tabPane.getTabs().stream().map(Tab::getContent).collect(Collectors.toList()));
            DEFAULT_INSTANCE.put(SplitPane.class, SplitPane::getItems);
            // others...

            // default behavior for "simple" controls, just return empty list:
            DEFAULT_INSTANCE.put(Control.class, c -> Collections.emptyList());

            // default behavior for non-control parents, return getChildrenUnmodifiable:
            DEFAULT_INSTANCE.put(Parent.class, Parent::getChildrenUnmodifiable);


            // and for plain old node, just return empty list:
            DEFAULT_INSTANCE.put(Node.class, n -> Collections.emptyList());
        }

        private final Map<Class<?>, Function<? ,List<Node>>> map = new LinkedHashMap<>();

        public <N extends Node> void put(Class<N> nodeType, Function<N, List<Node>> childRetrieval) {
            map.put(nodeType, childRetrieval);
        }

        @SuppressWarnings("unchecked")
        public <N extends Node> Function<N, List<Node>> getChildRetrieval(Class<N> nodeType) {
            return (Function<N, List<Node>>) map.get(nodeType);
        }

        @SuppressWarnings("unchecked")
        public List<Node> firstMatchingList(Node n) {
            for (Class<?> type : map.keySet()) {
                if (type.isInstance(n)) {
                    return getChildRetrieval((Class<Node>) type).apply(n);
                }
            }
            return Collections.emptyList();
        }
    }

    public static void main(String[] args) {
        launch(args);
    }
}

我不确定这是否是您想要做的,如果是这样,可能会有更优雅的方法来处理它。但我认为为特定类型声明这样的策略比对类型进行大开关要好得多,并且它留下了将其配置为具有您想要的特定规则的选项。

【讨论】:

  • 感谢您的详细解答。您能否也提供一个Java7兼容的代码,因为还没有尝试过Java8。部分清楚如何将 lambda 转换回抽象类,但在 Java7 中仍然没有 Function 类。
  • 呃,没有。 Java 7 版本会非常冗长。如果您真的想用它来折磨自己,请将 Function 替换为 javafx.util.Callback 并将所有 lambda 表达式替换为匿名内部类。请注意,不再公开支持 Java 7(Java 9 将在几个月后发布)。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2011-04-17
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-07-18
相关资源
最近更新 更多