0
votes
5answers
113 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 abs …
1
vote
3answers
48 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: …
2
votes
7answers
165 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 BarCo …
1
vote
8answers
185 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 a …
-1
votes
3answers
55 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 …
4
votes
2answers
62 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 si …
0
votes
2answers
44 views
How to make WPF Pages have common interface
We develop a wizard-like WPF application that has a Frame that navigates to various Pages. I define each Page in a separate xaml and xaml.cs file, and then have the application mak …
1
vote
5answers
52 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 do …
3
votes
4answers
97 views
How dynamic casts work?
Let's say I have type A, and a derived type B. When I perform a dynamic cast from A* to B*, what kind of "runtime checks" the environment performs? How does it know that the cast i …
0
votes
1answer
22 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 < ActiveRec …
2
votes
3answers
68 views
Advanced PHP Polymorphism question
Hey guys!
I have a class which has a function to retrieve children elements from a database. The following code will be rather pseudo cause I want to keep it as easy as possible.
…
1
vote
4answers
119 views
Java Polymorphism problem
I've learned all these programming terms in Swedish so please bear with me..
I'm having problems calling a method in a subclass which should override a method in the superclass.
…
1
vote
3answers
89 views
How do I iterate and perform some arbitrary operation on each item?
I have a Abstract Iterator class which has this function
void iterate(){
while(this.hasnext()){
..this.next()..
}
}
How do I pass in any arbitrary function tha …
2
votes
4answers
109 views
How to call overrided methods in a subclass? Potential candidate for refactoring
Originally I had a design problem where I needed five subclasses of a superclass, where all but two would use the same generic method of doing things and the other two classes woul …
5
votes
7answers
155 views
why can’t I be compact with my desired C# polymorphism?
Here's what I want to do:
XmlWriter writer = XmlWriter.Create(
(string.IsNullOrEmpty(outfile) ? Console.Out : outfile)
);
This does not compile, however, giving the error "T …
