0
votes
2answers
25 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 …
8
votes
6answers
1k views
C++: Is there a way to instantiate objects from a string holding their class name?
Hi guys,
I have a file: Base.h
class Base;
class DerivedA : public Base;
class DerivedB : public Base;
/*etc...*/
and another file: BaseFactory.h
#include "Base.h"
class B …
1
vote
3answers
84 views
Java: Instantiate or Inheritance?
I am writing a logging service for one of my applications but I am sure many other applications would use this. In that case, would it make sense to make the application extend a c …
0
votes
5answers
35 views
How to instantiate a certain number of objects determined at runtime?
So here's my problem...
Let's say I have a simple "Person" class just with "FirstName" and "LastName" attributes.
I want to have a form where the user says how many "Persons" he …
0
votes
1answer
73 views
PHP: string parameter to __construct not passed correctly.
Hi!
I'm trying my hand at TDD with PHP and am writing a webbased app to access articles in a MySQL database; this is the test function:
class TestArticleTestCase extends UnitTest …
1
vote
5answers
94 views
Generics and Class.forName
Hi,
I would like to create an instance of a specified class using its name. My code is shown below.
I get a compiler warning. Am I doing this the right way? Is it even possible t …
0
votes
2answers
49 views
Flex Instantiated Object - wait for creationComplete
I have a simple component I created which I instantiate in my main program like so:
newMessage = new MessageDetail();
newMessage.body.text = "Hello World";
I receive the error " …
1
vote
4answers
148 views
How can you instantiate an object with a string and send a parameter in C#?
The code below produces this output fine:
This is page one.
This is page two.
But how do I change it so that the PageItem objects are instantiated dynamically from the List<s …
1
vote
7answers
157 views
Self Instantiation in Java
How do I self-instantiate a Java class? I should not use any file other than its class file. Also assume that after the line where I initialized the NAME variable, they don't know …
0
votes
1answer
33 views
How to make a type safe wrapper around Variant values
I'm working with a OPC Server control that stores data tags as variant types, described by System.Runtime.InteropServices.VarEnum. These types include the following, VT_BSTR (strin …
0
votes
3answers
144 views
Instantiating at global level (C++)
Hi, I get the following error with the code below.
expected constructor, destructor, or type conversion before '=' token
--
#include <string>
#include <map>
class …
1
vote
1answer
121 views
DataTemplate-driven View injection with MVVM
I have a container view that looks something like this
<UserControl x:Class="Views.ContainerView">
<UserControl.Resources>
<ResourceDictionary>
<DataTem …
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 …
1
vote
2answers
62 views
Is there something like PostConstruct for JAXB-annnotated classes?
I need to perform certain operations on a class after it was unmarshalled
(after it is constructed by JAXB, rather then by myself).
Is there such a functionality in JAXB?
If not, …
3
votes
6answers
170 views
How to create inline objects with properties in Python?
In Javascript it would be:
var newObject = { 'propertyName' : 'propertyValue' };
How to do it in Python?
