+ 1
What is difference between abstract and instance in Java
1 Resposta
0
abstract is sth you can't directly use, like abstract methods or abstract classes. You have to make child-classes of that class which is abstract or has abstract methods to overwrite them to actually use the method/class
instance is an object from an class. you create an instance of an class with the 'new' keyword