3
votes
3answers
99 views
C# Generics and polymorphism: an oxymoron?
I just want to confirm what I've understood about Generics in C#. This has come up in a couple code bases I've worked in where a generic base class is used to create type-safe derived instances. A …
0
votes
5answers
79 views
How to structure a Genetic Algorithm class hierarchy?
I'm doing some work with Genetic Algorithms and want to write my own GA classes. Since a GA can have different ways of doing selection, mutation, cross-over, generating an initial population, …
1
vote
1answer
34 views
Hibernate - apply locks to parent tables in polymorphic queries
I have two objects:
public class ParentObject {
// some basic bean info
}
public class ChildObject extends ParentObject {
// more bean info
}
Each of these tables corresponds to a differnet …
1
vote
3answers
61 views
Polymorphism and shadowing inherited members
I have a couple of small classes to represent parts in a search filter. If the searched value equals NonValue the filter is supposed to do nothing. This is defined in a Base Class:
Private Class …
0
votes
5answers
136 views
Static Abstract methods in C#
I know it's a tautology to have a static abstract method, but how can I do something like this:
Base, abstract class:
abstract class QTimerDatabaseObject {
public static abstract …
2
votes
4answers
2k views
Hiding inherited members in C#
I'm looking for some way to effectively hide inherited members. I have a library of classes which inherit from common base classes. Some of the more recent descendant classes inherit dependency …
8
votes
11answers
919 views
Does polymorphism or conditionals promote better design?
I recently stumbled across this entry in the google testing blog about guidelines for writing more testable code. I was in agreement with the author until this point:
Favor polymorphism over …
1
vote
8answers
198 views
Abstract class in c++
Hi, Let's say I've got class:
class Bad_Date
{
private:
const char* _my_msg;
public:
const char* msg() const
{
return _my_msg;
}
};
And I would like to not be able to create any object of this …
2
votes
7answers
175 views
c++ problem with polymorphism and vectors of pointers
Consider the following example code:
class Foo
{
};
class Bar : public Foo
{
};
class FooCollection
{
protected:
vector<shared_ptr<Foo> > d_foos;
};
class BarCollection : public …
-1
votes
3answers
58 views
Copying a class that inherits from a class with pure virtual methods?
I've not used C++ in a while, and I've become far too comfortable with the ease-of-use of real languages.
At any rate, I'm attempting to implement the Command pattern, and I need to map a number of …
4
votes
2answers
67 views
Choosing the right subclass to instantiate programatically
Ok, the context is some serialization / deserialization code that will parse a byte stream into an 'object' representation that's easier to work with (and vice-versa).
Here's a simplified example …
7
votes
16answers
1k views
Polymorphism - Define In Just Two Sentences
I've looked at other definitions and explanations and none of them satisfy me. I want to see if anybody can define polymorphism in at most two sentences without using any code or examples. I don't …
0
votes
1answer
30 views
Problem with one-to-many relationship with Single Table Inheritance (Rails)
I have problem with STI and relationship in ActiveRecord. I think I missed something in the class methods, but I don't know for sure. Below is my models:
class User < ActiveRecord::Base
has_many …
1
vote
5answers
53 views
xcode compiler see a class as abstract but it’s not!
Hi,
I'm working on a C++ command tool project that depends on a third party architecture called ACE (adaptive communication environment). I'm new to Xcode and this is what I've done to have my …
0
votes
1answer
10 views
Mapping a polymorphic relationship onto 2 models simultaneously
I need to relate a Comments model with two ids at the same time but can't figure out how. Here' my situation. I am building an on-line school grading system and need to be able let the teacher make …
