Search:

Type: Posts; User: KevinWorkman

Search: Search took 0.14 seconds.

  1. Re: What's difference between public class and abstract class?

    You sure about that definition?


    public class Test{
    public static void main(String... args){
    AbstractTest at = new AbstractTest(){};
    ExtendingClass et = new ExtendingClass();
    ...
  2. Re: What's difference between public class and abstract class?

    Apples and oranges. Abstract classes can be public, but they don't have to be. Public classes can be abstract, but they don't have to be. So I guess that's more like comparing apples to fruit?
Results 1 to 2 of 2