nonabstract
- adjective
- Specialized
- Unlike abstract classes, a nonabstract class can be instantiated to create objects.
Examples
-
A nonabstract class can be instantiated directly.
-
The nonabstract methods provide concrete implementations.
-
The developer created a nonabstract class so it could be used directly in the application.
-
They refactored the code to make the base class nonabstract for easier testing.
-
The developer created a nonabstract class so it could be used directly in the application.
-
Unlike abstract classes, a nonabstract class can be instantiated to create objects.
-
They refactored the code to make the base class nonabstract for easier testing.
Antonyms
How Instantiable
Surface Forms
Morphology
Etymology
Nonabstract in programming also breaks into non- ('not') and abstract ('an idea or plan you cannot use by itself'). A nonabstract class is not just an idea: you can use it directly to make objects, so it becomes real code you can run.