What is the difference between Interface and Abstract class?
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
public abstract class Shape{
public abstract void draw();
}
public interface Drawable{
void draw();
}.