Subclass recap in Microsoft Dynamics 365 Finance and Operations apps
Views (69)
Subclass recap in Microsoft Dynamics 365 Finance and Operations apps
superclass is often known as a base class, and a subclass is often known as a derived class.
- Subclasses are classes that extend or inherit from other classes. A class can extend only one other class.
- Multiple inheritance isn’t supported. If you extend a class, the subclass inherits all the methods and variables in the parent class (the superclass).
- Subclasses let you reuse existing code for a more specific purpose.
- help save time during design, development, and testing.
- To customize the behavior of a superclass, override the methods in a subclass.

Like
Report
*This post is locked for comments