2
votes
5answers
129 views
C++ instantiate templates in loop
hi
I have have a factory class, which needs to instantiate several templates with consecutive template parameters which are simple integers. How can I instantiate such template f …
0
votes
2answers
21 views
Recurring configurations of a certain class: better to create subclasses or a factory?
Short summary: When you want to predefine certain instantiations of a class, is it better to create subclasses or a factory?
Problem Context
I have a view helper class MyWebservi …
0
votes
1answer
55 views
How do I implement a delegate factory?
The documentation for Autofac has an interesting page describing its ability to automatically generate delegate factories. It also strongly suggests that you can get similar result …
4
votes
9answers
370 views
Is it confusing to call this class a “factory”?
My understanding of a factory is that it encapsulates instantiation of concrete classes that all inherit a common abstract class or interface. This allows the client to be decouple …
1
vote
5answers
178 views
Generic factory in C++
Hello, I'm working on a game and am trying to implement a smart way to create npc-objects in C++ from parsing a text file.
Currently this is hard coded in a Factory-object. Like t …
0
votes
0answers
19 views
DDD - Returning entity in response to a service operation
I am new to domain driven development & have a simple question. If a service needs to generate some entity as a response to an operation then how should it be done? One of the …
0
votes
1answer
13 views
Prevent a specific assembly from being added to my factory project?
I've created a factory assembly that can process any type of transaction (that supports ITransactionType). I can add more transaction types in separate assemblies, all of which wi …
4
votes
4answers
202 views
Python and factories
I cant seem to grasp the proper concepts of a factory.
Can anyone help me code a simple test? I read some texts over the internet and cant code it the same way. Actually i cant un …
2
votes
5answers
173 views
A Disgusting Hack (factory method on base class that uses reflection)
This is a dirty thing to do, and I feel dirty for doing it:
public abstract class InterestRate {
// irrelevant details
public static T ImpliedRate<T>(
doub …
1
vote
2answers
45 views
Spring: Getting FactoryBean object instead of FactoryBean.getObject()
Short question: If I have class that impelemnts FactoryBean interface, how can I get from FactoryBean object itself instead of FactoryBean.getObject()?
Long question: I have to us …
0
votes
3answers
56 views
Silly rails question: undefined method within class declaration.
Hi all-
I have a user class, where I am trying to attach a profile created by a factory. Here is the class:
class User < ActiveRecord::Base
acts_as_authentic
has_one :pro …
4
votes
7answers
124 views
When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?
In Karl Seguin's Foundations of Programming there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with …
2
votes
6answers
245 views
When to use Factory method pattern?
When to use Factory method pattern?
Please provide me some specific idea when to use it in project?
and how it is a better way over new keyword?
1
vote
5answers
160 views
Factory methods in Ruby
What is the slickest, most Ruby-like way to have a single constructor return an object of the appropriate type?
To be more specific, here's a dummy example: say I have two classes …
0
votes
2answers
59 views
Use of helper/utility methods in a Factory class
I have a question about the usage of "utility/helper" methods in a factory class. Consider an example of an XML string that reprents a document. I have a class that transforms it t …
