Question

In programming, cross-cutting concerns are a common concern (For lack of better terms).

For example, if you are modelling an aircraft and all its composite parts in classes, various devices will depend on the same type of part. E.g. fuel tank, water tank, etc.

I have the same issue to deal with in my design. Apart from AOP, what strategies are there to deal with this?

Thanks

Was it helpful?

Solution

Well, AOP is conceived to deal, by definition, with cross-cutting concerns. The answer to your question is, therefore, AOP. You don't need anything else apart from AOP. Why would you?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top