What is Proxy pattern?

  • A design pattern that allows objects to represent or act on behalf of other objects, providing a level of indirection between the client and the target object
  • A design pattern that creates objects by cloning existing objects, rather than creating new instances from scratch
  • A design pattern that provides a simplified interface to a complex system, allowing the client to interact with the system through a single, unified interface
  • A design pattern that uses shared objects to support large numbers of similar objects efficiently
Proxy pattern is a design pattern that allows objects to represent or act on behalf of other objects, providing a level of indirection between the client and the target object. The pattern involves creating a proxy class that acts as an intermediary between the client and the target object. This pattern can be useful in situations where you want to add additional functionality or control access to an object, without affecting the behavior of the target object.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *