Java method call chaining in static context
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.
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
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.