I have never before seen such a thing, so let's say I have such listener object:
MyWhateverListener dafuqListener = new MyWhateverListener() {
@Override
public void onSuccessCall(String s) {
// success call
}
@Override
public void onFailCall(boolean b) {
// fail call
}
@Override
public boolean onDafuqCall(int i, boolean b) {
// some whatever code
return false;
}
};
Everything fine, the appropriate method will be called back to, when some action succeedes, but what's with this return
inside onDafuqCall
method, why is it needed, where it will return something?
P.S. This interface is from an Android ads provider's SDK.
It is quite unclear what you ask but I'll give it a shot.
Interfaces are a way to allow objects to follow a specific pattern. They come handy, for instance, when I have an interface called "Listener" and five implementations: ActionListener, MouseListener, KeyListener, CloseListener, StateChangeListener. If I want to have a method allowing the user to register a user, instead of having to make separate "registerListener" methods for each implementation I can have:
registerListener(Listener l)
.Now back to your post, Interfaces may contain methods with return values, as an example if I have an interface called Event, and it contains a method called
isCanceled()
that returns boolean, then if I have an implementation called "ClickEvent" and I want to check if this event (after it has been called) is canceled by anyone or anything I'll invoke theisCanceled()
method and that should return a value, because it is handled by the implementing object.So to wrap this up, the return value is needed by the piece of code that calls the listener to get information. If we look in Java interfaces and their implementations we can find a ton of examples. You can check for yourself by looking into the java.uti.List interface source and an implementation like java.util.ArrayList
More information can be obtained from the Docs:
https://docs.oracle.com/javase/tutorial/java/concepts/interface.html
https://docs.oracle.com/javase/tutorial/java/IandI/createinterface.html
EDIT #1: Here is the example explained above, represented in code:
The event interface:
The ClickEvent (that implements Event):
The place where ClickEvent is called. Here I demonstrate why the return value is needed (See the
isCanceled()
method):If you have any question don't hesitate to ask :D