类型传递/更改

发布于 2024-08-10 01:25:14 字数 653 浏览 3 评论 0原文

public abstract class ASTNode3 extends ASTNode {

    ASTNode child1;
    ASTNode child2;
    ASTNode child3;

    public ASTNode3(ASTNode c1, ASTNode c2, ASTNode c3) {
    child1 = c1;
    child2 = c2;
    child3 = c3;
    }

    public ASTNode getChild1() {
    return child1;
    }

    public ASTNode getChild2() {
    return child2;
    }

    public ASTNode getChild3() {
    return child3;
    }
}

public class IRProc extends ASTNode3 {

    public IRProc (String p, Vector v, IRCmdSeq cmds) {
    super(p,v,cmds);
    }

我扩展了 ASTNode,如下所示,但是当我尝试传入 Vector 和 String 作为参数时,我不断收到错误。如何在不影响节点的情况下传递这些值。我正在考虑创建一个处理该类型的中间类,但我不知道该怎么做。

public abstract class ASTNode3 extends ASTNode {

    ASTNode child1;
    ASTNode child2;
    ASTNode child3;

    public ASTNode3(ASTNode c1, ASTNode c2, ASTNode c3) {
    child1 = c1;
    child2 = c2;
    child3 = c3;
    }

    public ASTNode getChild1() {
    return child1;
    }

    public ASTNode getChild2() {
    return child2;
    }

    public ASTNode getChild3() {
    return child3;
    }
}

public class IRProc extends ASTNode3 {

    public IRProc (String p, Vector v, IRCmdSeq cmds) {
    super(p,v,cmds);
    }

I extended the ASTNode as shown below, but when i try to pass in a Vector and a String as arguments I keep getting errors. How can I pass in these values without affecting the node. I was thinking of creating an intermediate class that handle the type, but i don't know how to.

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

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

发布评论

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

评论(1

甜中书 2024-08-17 01:25:14

在该行中,

super(p,v,cmds);

您尝试使用参数 String p, Vector v, IRCmdSeq cmds 调用构造函数 ASTNode3(ASTNode c1, ASTNode c2, ASTNode c3)。这不匹配。

您必须创建 ASTNode 实例才能调用 super()。如何执行此操作取决于您想要做什么。也许您应该解释一下 pvcmds 实际包含哪些信息。

In the line

super(p,v,cmds);

you try to call the constructor ASTNode3(ASTNode c1, ASTNode c2, ASTNode c3) with the arguments String p, Vector v, IRCmdSeq cmds. This doesn't match.

You have to create instances of ASTNode to call super(). How you do this depends on what you want to do. Perhaps you should explain what kind of information p, v and cmds actually contain.

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