April 2016
Intermediate to advanced
256 pages
4h 57m
English
Apex programming revolves around objects and classes. During the course of application development, we create multiple classes. Also, we create objects of these classes to satisfy business requirements. Creating an object of a class within another class, creates dependency between those classes. This is also known as tight coupling.
As discussed in the previous chapter, tight coupling is considered inferior, as it can negatively impact the code's maintainability and scalability. Creational design patterns can help us avoid tight coupling by hiding the object creational logic.
Creational design patterns can be considered in the following scenarios:
Scheduler class. If we directly instantiate ...Read now
Unlock full access