What is the point of Interfaces? From my understanding, it is basically a list of abstract methods. These methods then can be used by implementing the class. Like so in shorthand:
public interface whatever
{
public void joe();
}
public class steve implements whatever
{
public void joe()
{
body
}
public static void main(String args[])
{
joe();
}
}
So in other words, you going to end up declaring it either way.
