静态上下文中的 Java 方法调用链

发布于 2024-10-08 09:44:29 字数 206 浏览 8 评论 0原文

在 StringBuilder 类中,我可以这样做:

StringBuilder sb = new StringBuilder();
sb.append( "asd").append(34);

方法追加返回 StringBuilder 实例,我可以连续调用它。

我的问题是可以在静态方法上下文中这样做吗?没有类实例

In StringBuilder class I can do like this:

StringBuilder sb = new StringBuilder();
sb.append( "asd").append(34);

method append returns StringBuilder instance, and I can continuosly call that.

My question is it possible to do so in static method context? without class instance

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

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

发布评论

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

评论(5

欢烬 2024-10-15 09:44:29

是的。像这样(未经测试)。

public class Static {

  private final static Static INSTANCE = new Static();

  public static Static doStuff(...) {
     ...;
     return INSTANCE;
  }

  public static Static doOtherStuff() {
    ....
    return INSTANCE;
  }
}

您现在可以拥有类似的代码。

Static.doStuff(...).doOtherStuff(...).doStuff(...);

但我建议不要这样做。

Yes. Like this (untested).

public class Static {

  private final static Static INSTANCE = new Static();

  public static Static doStuff(...) {
     ...;
     return INSTANCE;
  }

  public static Static doOtherStuff() {
    ....
    return INSTANCE;
  }
}

You can now have code like.

Static.doStuff(...).doOtherStuff(...).doStuff(...);

I would recommend against it though.

迷爱 2024-10-15 09:44:29

这称为方法链接

为此,您始终需要一个实例化的对象。
所以,抱歉,但是您不能在静态上下文中执行此操作,因为没有与之关联的对象。

This is called method-chaining.

To do it, you always need an instantiated object.
So, sorry, but you cannot do it in a static context as there is no object associated with that.

给妤﹃绝世温柔 2024-10-15 09:44:29

你想要这个吗?

public class AppendOperation() {
    private static StringBuilder sb =  new StringBuilder(); 

    public static StringBuilder append(String s){
        return sb.append(s);
    }

    public static void main(String... args){

         System.out.println(AppendOperation.append("ada").append("dsa").append("asd"));

    }

}

也许我没有正确理解这个问题(静态上下文),

你的意思是这个吗?

static {

} //当然你也可以这样做,

如果不是以上所有,你不能没有任何静态方法,因为append()不是静态的

Do you want this ?

public class AppendOperation() {
    private static StringBuilder sb =  new StringBuilder(); 

    public static StringBuilder append(String s){
        return sb.append(s);
    }

    public static void main(String... args){

         System.out.println(AppendOperation.append("ada").append("dsa").append("asd"));

    }

}

maybe I don't understand the question (static context) correctly

do you mean this?

static {

} //of course you can do this, too

if not all above, you can't do without any static method because append() is not static

秋千易 2024-10-15 09:44:29

您想要静态的构建器模式吗?不。最好将静态数据转换为实例。

You want the builder pattern on a static? No. Best to convert your statics to instances.

牛↙奶布丁 2024-10-15 09:44:29

正如此处所述,您可以简单地返回null
例如:

public class MyClass {

    public static MyClass myMethod() {
        doSomething();
        return null;
    }
}

As said here You can simply return null.
For example:

public class MyClass {

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