Welcome to the CSC Q&A, on our server named in honor of Ada Lovelace. Write great code! Get help and give help!
It is our choices... that show what we truly are, far more than our abilities.

Categories

+11 votes

Design Patterns are "simple and elegant solutions to specific problems in object-oriented software design"

asked in CSC305 Fall 2019 by (1 point)

1 Answer

+4 votes
 
Best answer

Some examples of design patterns are:
-singleton patterns where you restrict the instantiation of a class to one object
-adapter patterns where you use an adapter class to convert one class into another class to make it so the two classes can work together.

answered by (1 point)
selected by
...