Tagged Questions

8
votes
4answers
185 views

Why does this work? Method overloading + method overriding + polymorphism

In the following code: public abstract class MyClass { public abstract bool MyMethod( Database database, AssetDetails asset, ref string errorMessage); } public sealed class …
3
votes
8answers
120 views

vptr - virtual tables

hey, there is something i still don't get. for every class i declare there is a hidden vptr member pointing to the class virtual table. let's say i have this declaration : class BASE { …
5
votes
1answer
85 views

How to make Haskell compute the correct polymorphic type?

I just realized how useful the little on-function can be. Ex: orderByLength = sortBy (compare `on` length) But unfortunately, the inferred types can be somewhat counter-intuitive. According to …
1
vote
2answers
166 views

Polymorphism and array of pointers problem in C++

Hi, I'm working on a project and it's in a stage that I don't know what's wrong. Here's the simplified version: The code: class Base { // This base class is pure abstract …
1
vote
2answers
42 views

Dynamic method dispatch based on value of variable

Hi there, Long switch statments are often frowned upon. The solution is to use polymorphism. However what if the thing I'm switching on is not a type code? What I would like to do is replace the …
3
votes
3answers
119 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 …
3
votes
2answers
27 views

How can I create a type with multiple parameters in OCaml?

I'm trying to create a type that has multiple type parameters. I know how to make a type with one parameter: type 'a foo = 'a * int But I need to have two parameters, so that I can parameterize …
0
votes
5answers
89 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
9answers
213 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 …
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 …
0
votes
5answers
137 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
7answers
185 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
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 …
4
votes
2answers
69 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 …
-1
votes
3answers
60 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 …

1 2 3 4 5 15 next
15 30 50 per page