Java dynamic proxy questions.
- by Tony
1.Does dynamic proxy instance subclass the target class?
The java doc says the proxy instance implements "a list of interfaces", says nothing about subclassing, but through debugging, I saw that the proxy instance did inherit the target class properites.What does the "a list of interfaces " mean? Can I exclude those interfaces implemented by…