Skip to main content

All Questions

2 votes
0 answers
121 views

Access modifiers in combination of interpreter pattern with template method pattern

Motivation: (Skip to "The Problem" if you don't need motivation for it) As a project for myself, I'm writing an expression parser for certain kinds of mathematical expressions, and I'm using the ...
Umer Amjad's user avatar
12 votes
4 answers
9k views

"Factory Method is a specialization of Template Method". How?

Similarities and differences between the two: Template Method Relies on inheritance. Defines the steps of an algorithm, and leaves the task of implementing them to subclasses. Factory Method Relies ...
Maria Ines Parnisari's user avatar
1 vote
2 answers
246 views

Processing and sending processed data to super from child class constructor

I want to do some initialization in child class constructor and pass result to super(). But Java doesn't allow any processing in child class constructor before super() call. Whats a good way to ...
mzlo's user avatar
  • 141