Tagged Questions

3
votes
10answers
288 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
186 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
vote
2answers
83 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 …
0
votes
0answers
18 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, …
2
votes
2answers
40 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 …
4
votes
6answers
208 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
135 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 …
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
3answers
91 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
69 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
81 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
100 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
139 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
110 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 …
1
vote
1answer
58 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 …

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