3
votes
3answers
80 views
Whats the utility of public constructors in abstract classes in C#?
If a public constructor in an abstract class can only be called by their derived classes it should be functionally equivalent to a protected constructor. Right?
Is there any diffe …
2
votes
7answers
53 views
providing abstract class member variables from a subclass
What is the 'correct' way of providing a value in an abstract class from a concrete subclass?
ie, should I do this:
abstract class A {
private string m_Value;
protected …
3
votes
5answers
75 views
Need some help sorting out a major abstract pattern headache within my DAL
I've caused myself a bit of an issue with my Data Access Layer. In this particular instance, I have a table that contains potentially 5 types of 'entity'. These are basically Compa …
0
votes
3answers
97 views
How do I compare two objects based on their base class?
I would like to be able to compare two classes derived from the same abstract class in C#. The following code illustrates my problem.
I now I could fix the code by making BaseClas …
2
votes
6answers
126 views
C++ Functions for an Abstract Base Class
Suppose I want to have an inheritance hierarchy like this.
class Base
class DerivedOne : public Base
class DerivedTwo : public Base
The base class is not meant to be instantia …
5
votes
4answers
97 views
Using shared_ptr in dll-interfaces.
I have an abstract class in my dll.
class IBase {
protected:
virtual ~IBase() = 0;
public:
virtual void f() = 0;
};
I want to get IBase in my exe-file which lo …
0
votes
5answers
82 views
Using an abstract class to implement a stack of elements of the derived class
I have to do this for a basic C++ lecture at my university, so just to be clear: i would have used the STL if i was allowed to.
The Problem: I have a class named "shape3d" from wh …
1
vote
3answers
84 views
AS3 - Abstract Classes
How can I make an abstract class in AS3 nicely?
I've tried this:
public class AnAbstractClass
{
public function toBeImplemented():void
{
throw new NotImplementedE …
0
votes
8answers
128 views
Accessing a method from a templated derived class without using virtual functions in c++?
How do I get around this? I clearly cannot make the value() method virtual as I won't know what type it is beforehand, and may not know this when accessing the method from b:
clas …
1
vote
1answer
43 views
Abstract base class inheritance in Django with foreignkey
I am attempting model inheritance on my Django powered site in order to adhere to DRY. My goal is to use an abstract base class called BasicCompany to supply the common info for th …
0
votes
3answers
70 views
Why is my Polymorphic Parent class calling the Subclass Method from within itself?
Heres the code I've made up so far. Its fully functional and the only gripe I have with it is that my output for Weekly and Annual pay is always weekly...I'm at a loss as to how t …
0
votes
2answers
38 views
Abstract Base Class and data members? How does it work?
An abstract base class (ABC) can have data to support the classes that inherit form it.
However, given that its not possible to instantiate an object of an ABC how does the compil …
0
votes
2answers
89 views
Why is my nest class being seen as abstract?
I have an abstract base class which contains a private nested implementation. visual c++ is giving me the following error when I try to instantiate the non-abstract nested impleme …
5
votes
4answers
174 views
Copy constructor: deep copying an abstract class
Suppose I have the following (simplified case):
class Color;
class IColor
{
public:
virtual Color getValue(const float u, const float v) const = 0;
};
class Color : public …
3
votes
3answers
138 views
in PHP, when should I use static methods vs abstract classes?
I'm under the interpretation that if I need to access a method statically, I should make the class abstract only if I'll never need it instantiated. Is that true?
