1
vote
5answers
91 views
Can I change dll-interface without recompilation exe-file?
I have an abstract class in my DLL.
class Base {
virtual char * First() = 0;
virtual char * Second() = 0;
virtual char * Third() = 0;
};
This dinamic library and this inte …
0
votes
0answers
20 views
In nHibernate, can I map an abstract base class to a collection?
I have a base class for content items in a CMS I'm building. It's currently marked abstract because I only want derived classes to be instantiated. Derived classes like BlogPost, …
3
votes
10answers
300 views
Are empty abstract classes a bad practice, and why?
We have several empty abstract class in our codebase. I find that ugly. But besides this very stupid reason (ugliness), should I refactor it (into empty interface e.g.) ?
Otherwis …
1
vote
8answers
195 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 …
2
votes
2answers
41 views
How to limit subclassing of public abstact class to types in same assembly and thus allow protected members typed to internal types.
This question is similar to c# internal abstract class, how to hide usage outside but my motiviation is different. Here is the scenario
I started with the following:
internal cl …
1
vote
2answers
109 views
Groovy on Grails: Abstract Classes in GORM Relationships
Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example:
abstract class User {
String email
String password …
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 do …
4
votes
6answers
210 views
Is the .NET Stream class poorly designed?
I've spent quite a bit of time getting familiar with the .NET Stream classes. Usually I learn a lot by studying the class design of professional, commercial-grade frameworks, but I …
0
votes
5answers
157 views
C# abstract Dispose method
I have an abstract class that implements IDisposable, like so:
public abstract class ConnectionAccessor : IDisposable
{
public abstract void Dispose();
}
In Visual Studio 20 …
3
votes
3answers
94 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
72 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 …
0
votes
3answers
106 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 …
3
votes
5answers
82 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 …
2
votes
6answers
144 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 …
1
vote
1answer
64 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 …
