About 50 results
Open links in new tab
  1. java - Design patterns that every developer must know? - Stack Overflow

    What are the design patterns that every developer must know? I'm interested in the context of Java web developers working with Spring & Hibernate. I have often heard that good knowledge in des...

  2. Examples of GoF Design Patterns in Java's core libraries

    Apr 11, 2015 · I am learning GoF Java Design Patterns and I want to see some real life examples of them. What are some good examples of these Design Patterns in Java's core libraries?

  3. java - Design Patterns: Factory vs Factory method vs Abstract Factory ...

    Oct 23, 2012 · 272 I was reading design patterns from a website There I read about Factory, Factory method and Abstract factory but they are so confusing, am not clear on the definition. According to …

  4. How to study design patterns? - Stack Overflow

    Design patterns are a great concept that are hard to apply from just reading about them. Take some sample implementations that you find online and build up around them. A great resource is the Data …

  5. java - Design Patterns web based applications - Stack Overflow

    I am designing a simple web-based application. I am new to this web-based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, cri...

  6. java - When would you use the Builder Pattern? - Stack Overflow

    Nov 30, 2008 · Below are some reasons arguing for the use of the pattern and example code in Java, but it is an implementation of the Builder Pattern covered by the Gang of Four in Design Patterns. …

  7. On design patterns: When should I use the singleton?

    The glorified global variable - becomes a gloried global class. Some say breaking object-oriented design. Give me scenarios, other than the good old logger where it makes sense to use the singleton.

  8. What are the differences between Abstract Factory and Factory design ...

    152 Difference between AbstractFactory and Factory design patterns are as follows: Factory Method is used to create one product only but Abstract Factory is about creating families of related or …

  9. Design patterns with real time example - Stack Overflow

    Jul 19, 2012 · These classic design patterns every developer should understand, because it helps us to communicate with other developer abstract level, and it makes us better designer. Note: Adding brief …

  10. Do we have design patterns in C++ as we have in java?

    Jan 31, 2010 · The original book on Design patterns (Design Patterns: Elements of Reusable Object-Oriented Software by the Gang of Four) predates Java. The examples in there are in C++ and …