I'm trying to make spreadsheet with class/method modifiers. The spreadsheet itself can be located here, although I have some questions:
1) As I read, methods also can be sealed
, but what's the purpose of this? Protecting method against overriding?
2) Does fields also have to be abstract
in abstract
class?
3) Can virtual
method have body in defined object/class?