0 votes
in JAVA by (6.0k points)
What is Adapter pattern?

1 Answer

0 votes
by (30.8k points)

Another frequently asked Java design pattern questions. It provides interface conversion. If your client is using some interface but you have something else, you can write an Adapter to bridge them together. This is good for Java software engineer having 2 to 3 years experience because the question is neither difficult nor tricky but requires knowledge of OOP design patterns.

Related questions

0 votes
0 votes
asked Oct 16, 2019 in Design Patterns by DavidAnderson (7.4k points)
...