Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
239 views

Make C++ call the right template method in an un-ugly way

I'm cooking up a vector library and have hit a snag. I want to allow recursive vectors (i.e. vec<H,vec<W,T> >) so I'd like my "min" and other functions to be recursive as well. Here's what ...
5
votes
3answers
86 views

does it makes sense a virtual template method?

Suppose a construct like this: class Interface { public: template <typename T> virtual void reportOperationError(T code , std::string message) = 0; }; i don't understand the use case ...
2
votes
1answer
49 views

How do I initialize template type variables?

template <class T> void MyClass<T>::MyMethod() { // ... // Which of the following initialization is better? T MyVariable1 = 1; // 1st T MyVariable2 = 2.0; ...
2
votes
3answers
161 views

Template method pattern with implementation specific parameter type

I often get into situation when I'd like to use template method pattern, but the template method expects a different type of a parameter, like this: public abstract class AbstractFoo { public ...
2
votes
2answers
337 views

What is the “template method pattern” in cocoa with Object C ? ( Language comparison thinking )

Here is template method pattern , Java and C++ can implement it easily with virtual function. How about Object C to implement this pattern ? Any example in cocoa touch (iOS) ?
2
votes
2answers
153 views

How to implement function with vector of derived classes as parameter

(Related to a previous unanswered question I asked). I want to implement a function which can be called only with vectors of related classes as parameter. For eq if we have class A; class B: ...
2
votes
4answers
471 views

Where should we use Template Method - pattern?

Can anyone let me know some example situations where Template Method - pattern should be used? Give me some real-world use from your own experience. (I have so far found it useful only for mapping ...
1
vote
2answers
84 views

Using specific implementation type for a java interface method having generics parameter. How to avoid uncheked cast

I have the following interface public interface ITransform<T,V> { V convert(T object) throws Exception; } I have a class, Class1 that uses this interface as its method parameter. But it ...
1
vote
2answers
99 views

How to modify a function behaviour without template method?

I have a function (actually from ATL, it is ATL::CSoapMSXMLInetClient::SendRequest(LPCTSTR)) whose behaviour should slightly be modified. That is, I just have to add one function call somewhere in ...
1
vote
1answer
350 views

Differences between builder pattern vs template method

Template pattern provides algorithm in the base class whose steps can be modified in the derived class. In Builder pattern, concrete builder exposes methods for building a product which are called ...
1
vote
1answer
195 views

SRP applied to a workflow example: how to structure the classes in a sensible way

I have a problem with deciding about class responsibilities. I have 3 html-forms: For each form there is a html template containing some text and a marker for the form to be included Each form needs ...
1
vote
1answer
192 views

Object's state in the Template method design pattern

Here is an implementation example of the algorigthm in the base absctract class from http://sourcemaking.com/design_patterns/template_method/php public final function showBookTitleInfo($book_in) { ...
1
vote
1answer
122 views

Templated delegates

I have the following piece of code pattern: void M1(string s, string v) { try { // Do some work } catch(Exception ex) { // Encapsulate and rethrow exception } } The only ...
0
votes
2answers
67 views

Objective-C - Template methods pattern?

So I've been reading about template methods on Objective-C and I am trying to understand what's so special about them. From my understanding any method in a Base class can be over-ridden and super can ...
0
votes
1answer
57 views

How to save type information of template vector

I am trying to implement a class for serialization (XML for now). The idea is that any derived class can registers its members with the base class and base can write the members in form of XML. The ...
0
votes
1answer
72 views

Is it a good practice to implement Template Method Patter via C# events?

I am now trying to understand some code and I have found a pattern, which seem a bit strange to me. There is a user's control class with 'EditorOpen' event. At first, I thought this name is incorrect, ...