1
vote
3answers
65 views
Handling mutable collection keys in C#
Let's say I have a simple class Cat in C#, with a Name property of type string. Now I need a collection class for my cats, so I decide to wrap a Dictionary<string, Cat> in a …
1
vote
2answers
58 views
Passing around base class pointers
Scenario: I have the following defined classes.
class Baseclass { };
class DerivedTypeA : public Baseclass { };
class DerivedTypeB : public Baseclass { };
// ... and so on ...
cl …
0
votes
4answers
37 views
Custom Actionscript 3.0 Events: Build separate Classes for different purposes or use one for all?
I'm using custom Events in Actionscript 3.0 for the first time and I'm unsure about how to best design them. I need a couple of Events. Some of them need to transport different kin …
5
votes
12answers
152 views
Object oriented programming - class design confusion
I am trying to wrap my head around object oriented programming.
My understanding is that we have objects so we can design our programs to mirror real-life objects.
Lets take a cl …
0
votes
4answers
72 views
Object representation of betting rounds at poker
Hi, I'm writing a HandConverter of a poker hand. This is my first project and I'm trying to do it right from the beginning.
I got already the most parts, like lists of players, th …
0
votes
1answer
54 views
C# - A class-design problem - Loading property List.
Suppose I have a class like the following:
public class Stage
{
public int ID {get; set;}
public strint Code {get; set;}
public string Name {get; set;}
private Li …
16
votes
17answers
763 views
Design pattern for class with upwards of 100 properties
What advice/suggestions/guidance would you provide for designing a class that has upwards of 100 properties?
Background
The class describes an invoice. An invoice can have upwar …
3
votes
4answers
168 views
Initialising classes inside another class in C++?
I have this definition in a header file:
class Owner
{
private:
// Fields
Child* _myChild1;
public:
// Constructors
Owner();
Owner(const char childName[]);
};
and this impl …
0
votes
4answers
91 views
self = Descendant in Ruby?
Hi there, I have a text log from a game with (for example) two types of entries viz. Chat and Event. For the most part they are very similar so I have a LogEntry class defined as …
2
votes
6answers
228 views
Using a class in its constructor C# - Does it smell?
Does the code below smell? I'm refactoring some code and have discovered this circular relationship where foo needs a class which needs an interface which foo itself implements.
I …
1
vote
5answers
73 views
Design classes - OOPS features
Hi Friends,
Actually I am interested in improving my designing capability(designing of classes with its properties, methods etc) when a problem is given.
ie How to decide what coul …
1
vote
3answers
93 views
How to convert C++ class/struct to a primitive/different type/class/struct?
Hi all! I have the following class CppProperty class that holds value:
template<typename TT>
class CppProperty
{
TT val;
public:
CppProperty(void)
{
}
C …
1
vote
5answers
88 views
Downside of this macro construct and possible alternatives
I recently saw some code using macros like
#define CONTAINS(Class, Name)\
private:\
std::list<Class> m_##Name##s;\
public:\
void add_##Name(const Cla …
3
votes
3answers
68 views
PHP5: const vs static
In PHP5, what is the difference between using const and static? When is each appropriate? And what role does public, protected and private play - if any.
0
votes
2answers
37 views
Policies Array Class-Design wrapper
Hi,
i want to write an wrapper for different Array Classes with different Policies.
For example:
typedef ArrayType<useValArray,StdAllocator> Array; // one global assignm …
