Search Results

0
votes

What are your 3 most important programming patterns, and why?

I know this isn't really what you asked, but I'm going to list some anti-patterns. I think these are the "most important" not because they're good, but because they're so pervasive and have …
4
votes

Can the Diamond Problem be really solved?

There is no Diamond Problem with Interface-based inheritance. With Class-based inheritance, the multiple extended classes can have different implementation of a method, so there's ambiguity …
0
votes

What are the real world applications of Singleton Pattern

One way I've used Singleton is to implement a "main controller" object for an application. This was a bit like the Application object you get with VBA. This object performed various startu …