InterviewSolution
| 1. |
What Is The Concept Of Aop? Which Problem Does It Solve? |
|
Answer» ASPECT-Oriented Programming (AOP) is another way of thing to some areas of APPLICATION i.e. cross cutting concern like security, logging and transaction. AOP is simple complement of OOP programming for different CONCERNS. In OOP, the key unit of MODULARITY is the class, whereas in AOP the unit of modularity is the aspect. Aspect-Oriented Programming (AOP) enables modularization of cross-cutting concerns to solve following PROBLEMS.
Aspect-Oriented Programming (AOP) is another way of thing to some areas of application i.e. cross cutting concern like security, logging and transaction. AOP is simple complement of OOP programming for different concerns. In OOP, the key unit of modularity is the class, whereas in AOP the unit of modularity is the aspect. Aspect-Oriented Programming (AOP) enables modularization of cross-cutting concerns to solve following problems. |
|