Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

What's the difference between these?

Name: Anonymous 2017-09-04 0:19


public class Foo {
public abstract void A();
public abstract void B();
}
public class Bar extends Foo {
public void A() {
...
}
public void B() {
...
}
}


and


interface Foo {
public void A();
public void B();
}
public class Bar implements Foo {
public void A() {
...
}
public void B() {
...
}
}


well?

Name: Anonymous 2017-09-04 0:41

What programming language is this?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List