active questions tagged abstract-class - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:25:28Zhttp://stackoverflow.com/feeds/tag/abstract-classhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1605640/using-sharedptr-in-dll-interfaces6Using shared_ptr in dll-interfaces.Alexey Malistov2009-10-22T07:56:55Z2009-11-28T17:23:01Z
<p>I have an abstract class in my dll.</p>
<pre><code>class IBase {
protected:
virtual ~IBase() = 0;
public:
virtual void f() = 0;
};
</code></pre>
<p>I want to get <code>IBase</code> in my exe-file which loads dll.
First way is to create following function</p>
<pre><code>IBase * CreateInterface();
</code></pre>
<p>and to add the virtual function <code>Release()</code> in <code>IBase</code>.</p>
<p>Second way is to create another function</p>
<pre><code>boost::shared_ptr<IBase> CreateInterface();
</code></pre>
<p>and no <code>Release()</code> function is needed.</p>
<p><strong>Questions.</strong></p>
<p>1) Is it true that the destructor and memory deallocation is called in the dll (not in exe-file) in <em>the second case</em>?</p>
<p>2) Does <em>the second case</em> work well if exe-file and dll was compiled with different compilers (or different settings).</p>
http://stackoverflow.com/questions/1169571/adding-a-set-accessor-to-a-property-in-a-class-that-derives-from-an-abstract-clas2Adding a set accessor to a property in a class that derives from an abstract class with only a get accessorEric2009-07-23T04:14:51Z2009-11-26T19:14:02Z
<p>I have an abstract class, <strong>AbsClass</strong> that implements an interface, <strong>IClass</strong>. <strong>IClass</strong> has a couple properties with only Get accessors. <strong>AbsClass</strong> implements the properties of <strong>IClass</strong> as abstract properties to be defined in the classes that derive from <strong>AbsClass</strong>. </p>
<p>So all of the classes that derive from <strong>AbsClass</strong> will also need to satisfy <strong>IClass</strong> by having the same properties with Get accessors. However, in some cases I want to be able to add set accessors to the properties from <strong>IClass</strong>. Yet if I try to override the abstract properties in <strong>AbsClass</strong> with a set accessor I get this error</p>
<p><em>ConcClassA.Bottom.Set cannot override because AbsClass.Bottom does not have an overridable set accessor</em></p>
<p>See <strong>ConcClassA</strong> below.</p>
<p>If I have a class that is only implementing the <strong>IClass</strong> interface, but not inheriting from AbsClass then I am able to add a set accessor with out problems. See <strong>ConcClassB</strong> below.</p>
<p>I could just implement IClass at each derivation of AbsClass rather then directly for AbsClass. Yet I know from my design that every AbsClass needs to also be an IClass so I'd rather specify that higher up in the hierarchy.</p>
<pre><code>public interface IClass
{
double Top
{
get;
}
double Bottom
{
get;
}
}
abstract class AbsClass:IClass
{
public abstract double Top
{
get;
}
public abstract double Bottom
{
get;
}
}
class ConcClassA : AbsClass
{
public override double Top
{
get { return 1; }
}
public override double Bottom
{
get { return 1; }
//adding a Set accessor causes error:
//ConcClassA.Bottom.Set cannot override because AbsClass.Bottom does not have an overridable set accessor
//set { }
}
}
class ConcClassB : IClass
{
public double Top
{
get { return 1; }
//added a set accessor to an interface does not cause problem
set { }
}
public double Bottom
{
get { return 1; }
}
}
</code></pre>
<p><hr></p>
<p><strong>Update</strong></p>
<p>So I think this will make more sense if I explain exactly what I'm trying to do rather then using the abstract example. I work for an Architecture firm and these are business objects related to an architectural design project. </p>
<p>I have an abstract class <strong>RhNodeBuilding</strong> that represents one type of building on a project. There is some general functionality, like the ability to have floors, that is defined in <strong>RhNodeBuilding</strong>. <strong>RhNodeBuilding</strong> also inherits from another abstract classes that allow it be part of a larger project tree structure.</p>
<p><strong>RhNodeBuilding</strong> implements from an interface <strong>IBuilding</strong> which defines a number of read only properties that all buildings should be able to provide such as <strong>TopElevation</strong>, <strong>BottomElevation</strong>, <strong>Height</strong>, <strong>NumberOfFloors</strong>, etc..etc.. Keep in mind there are other building types that do not derive from <strong>RhNodeBuilding</strong>, but still need to implement <strong>IBuilding</strong>.</p>
<p>Right now I have two types that derive from <strong>RhNodeBuilding</strong>: <strong>MassBuilding</strong> and <strong>FootPrintBuilding</strong>. <strong>MassBuilding</strong> is defined by a 3D shape created by the user. That shape has a <strong>TopElevation</strong> and a <strong>BottomElevation</strong> that should be accessible through the corresponding properties, but you shouldn't be able to edit the 3D volume by changing the properties.</p>
<p><strong>FootPrintBuilding</strong> on the other hand is defined by a closed curve and a height range to extrude that curve through. So not only should the class be able to return what the current elevations are but these elevations should also be able to be changed to redefine the height range.</p>
<p>So in summary. All buildings (<strong>IBuildings</strong>) need to be able to return a <strong>TopElevation</strong> and <strong>BottomElevation</strong>, but not all buildings should allow <strong>TopElevation</strong> or <strong>BottomElevation</strong> to be set directly. All <strong>RhNodeBuildings</strong> are <strong>IBuildings</strong>, and classes that derive from <strong>RhNodeBuilding</strong> may or may not need to be able to directly set <strong>TopElevation</strong> and <strong>BottomElevation</strong>.</p>
<pre><code>public interface IBuilding
{
double Top
{
get;
}
double Bottom
{
get;
}
}
abstract class RhNodeBuilding:IBuilding
{
public abstract double Top
{
get;
}
public abstract double Bottom
{
get;
}
}
class MassBuilding: AbsClass
{
//mass building only returns Top and Bottom properties so it works fine
public override double Bottom
{
get { return 1; }
}
public override double Top
{
get { return 1; }
}
}
class FootPrintBuilding: AbsClass
{
//Top and Bottom of FootPrintBuilding can both be retrieved and set
public override double Top
{
get { return 1; }
//adding a Set accessor causes error:
//cannot override because RhNodeBuilding.Top does not have an overridable set accessor
//set { }
}
public override double Bottom
{
get { return 1; }
//adding a Set accessor causes error:
//cannot override because RhNodeBuilding.Bottom does not have an overridable set accessor
//set { }
}
}
</code></pre>
<p>Right now it seems like the best option is to not have <strong>RhNodeBuilding</strong> implement <strong>IBuilding</strong>, but rather have every class that derives from <strong>RhNodeBuilding</strong> implement IBuilding. That way I can define the properties from <strong>IBuilding</strong> directly rather then as overrides.</p>
<pre><code>abstract class AltRhNodeBuilding
{
public abstract double Top
{
get;
}
}
class AltFootPrintBuilding: IClass
{
public override double Top
{
get { return 1; }
//Can't add set access to overridden abstract property
set { }
}
//No problem adding set accessor to interface property
public double Bottom
{
get { return 1; }
set { }
}
}
</code></pre>
http://stackoverflow.com/questions/1789768/can-i-change-dll-interface-without-recompilation-exe-file1Can I change dll-interface without recompilation exe-file?Alexey Malistov2009-11-24T12:27:01Z2009-11-24T17:42:41Z
<p>I have an abstract class in my DLL.</p>
<pre><code>class Base {
virtual char * First() = 0;
virtual char * Second() = 0;
virtual char * Third() = 0;
};
</code></pre>
<p>This dinamic library and this interface are used for a long time.
There is my mistake in my code. Now I want to change this interface</p>
<pre><code>class Base {
virtual const char * First() const = 0;
virtual const char * Second() = 0;
virtual char * Third() const = 0;
};
</code></pre>
<p>Some EXE-program uses my DLL. Will the EXE-program work without recompilation?
Consider changes in each line of new interface independently.</p>
<p><strong>Note:</strong> of course, EXE-program does not change functions results.</p>
http://stackoverflow.com/questions/1500632/does-an-abstract-class-work-with-structuremap-like-an-interface-does0Does an abstract class work with StructureMap like an interface does?Andrew Siemer2009-09-30T20:59:24Z2009-11-21T15:00:03Z
<p>I am a big fan of StructureMap and use it in just about everything I do. I have only ever used it with interfaces though. I was wondering if anyone had any experience using with abstract classes? or...does it not support that type of wiring? If you got this to work can you post an example?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1749477/are-empty-abstract-classes-a-bad-practice-and-why3Are empty abstract classes a bad practice, and why?Antoine Claval2009-11-17T15:04:59Z2009-11-18T08:39:13Z
<p>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.) ?</p>
<p>Otherwise, the code is robust and well tested. So if it's only for a "aesthetic" reason, I will pass and let the empty abstract classes remain.</p>
<p>What do you think?</p>
<p>EDIT : </p>
<p>1) By empty abstract class, i mean something like : </p>
<p>-public abstract class EmptyAbstractClass {}</p>
<p>2) The reasons of the "emptyness" : Hibernate. I dont master this persistence framework at all. I just understand that a interface cannot be map to a table, and for this technicall reason a class has bean prefered to an interface.</p>
http://stackoverflow.com/questions/1750786/in-nhibernate-can-i-map-an-abstract-base-class-to-a-collection0In nHibernate, can I map an abstract base class to a collection?Joe Future2009-11-17T18:20:52Z2009-11-17T18:52:22Z
<p>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, Article, Photo, etc. are set up as a joined subclass to my ContentBase class in nHibernate.</p>
<p>I'm trying to set up a many-to-many mapping between this class and a Tag class. I want to have a collection of Tags on the ContentBase class, and a collection of ContentBase items on the tag class.</p>
<p>Will nHibernate allow me to map the abstract ContentBase class as a collection on the Tag class? I'm assuming not since it wouldn't be able to instantiate any instances of this class when reconstituting a Tag entity from the db. I really don't want to have to have to use a collection of content items per type (e.g. TaggedBlogPosts, TaggedArticles, etc.) on the Tag class.</p>
<p>The whole reason I'm doing this is because logically, a content item can have many tags, and 1 tag can belong to multiple content items. in order for nHibernate to manage the relationships for me in a mapping table, I believe I have to set up a many-to-many association and add the Tag to the ContentBase.Tags collection and then the content item to the Tags.TaggedContentItems collection before the mapping table entry is created in nHibernate.</p>
<p>Here are my mappings for reference:</p>
<pre><code> <class name="CMS.Core.Model.Tag,CMS.Core" table="bp_Tags">
<id column="TagName" name="TagName" type="String" unsaved-value="">
<generator class="assigned" />
</id>
<bag name="_taggedContentList" table="bp_Tags_Mappings" inverse="true" cascade="save-update" lazy="true">
<key column="TagName" />
<many-to-many class="CMS.Core.Model.ContentBase,CMS.Core" column="Target_Id" />
</bag>
</class>
<class name="CMS.Core.Model.ContentBase,CMS.Core" table="bp_Content">
<id name="Id" column="Id" type="Int32" unsaved-value="0">
<generator class="native"></generator>
</id>
<property name="SubmittedBy" column="SubmittedBy" type="string" length="256" not-null="true" />
<property name="SubmittedDate" column="SubmittedDate" type="datetime" not-null="true" />
<property name="PublishDate" column="PublishDate" type="datetime" not-null="true" />
<property name="State" column="State" type="CMS.Core.Model.ContentStates,CMS.Core" not-null="true" />
<property name="ContentType" column="ContentType" type="CMS.Core.Model.ContentTypes,CMS.Core" not-null="true" />
<bag name="_tagsList" table="bp_Tags_Mappings" lazy="false" cascade="save-update">
<key column="Target_Id" />
<many-to-many class="CMS.Core.Model.Tag,CMS.Core" column="TagName" lazy="false" />
</bag>
...
<joined-subclass name="CMS.Core.Model.BlogPost,CMS.Core" table="bp_Content_BlogPosts" >
<key column="Id" />
<property name="Body" type="string" column="Body" />
<property name="Title" type="string" column="Title" />
</joined-subclass>
...
</code></pre>
http://stackoverflow.com/questions/1720533/groovy-on-grails-abstract-classes-in-gorm-relationships1Groovy on Grails: Abstract Classes in GORM Relationships Visionary Software Solutions2009-11-12T07:33:15Z2009-11-16T18:19:09Z
<p>Grails GORM does not persist abstract domain classes to the database, causing a break in polymorphic relationships. For example:</p>
<pre><code>abstract class User {
String email
String password
static constraints = {
email(blank:false, nullable:false,email:true)
password(blank:false, password:true)
}
static hasMany = [membership:GroupMembership]
}
class RegularEmployee extends User {}
class Manager extends User {
Workgroup managedGroup
}
class Document {
String name
String description
int fileSize
String fileExtension
User owner
Date creationTime
Date lastModifiedTime
DocumentData myData
boolean isCheckedOut
enum Sensitivity {LOW,MEDIUM,HIGH}
def documentImportance = Sensitivity.LOW
static constraints = {
name(nullable:false, blank:false)
description(nullable:false, blank:false)
fileSize(nullable:false)
fileExtension(nullable:false)
owner(nullable:false)
myData(nullable:false)
}
</code></pre>
<p>}</p>
<p>causes</p>
<blockquote>
<p>Caused by: org.hibernate.MappingException: An association from the table document refers to an unmapped class: User
... 25 more
2009-11-11 23:52:58,933 [main] ERROR mortbay.log - Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'messageSource': Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager': Cannot resolve reference to bean 'sessionFactory' while setting bean property 'sessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sessionFactory': Invocation of init method failed; nested exception is org.hibernate.MappingException: An association from the table document refers to an unmapped class: User:
org.hibernate.MappingException: An association from the table document refers to an unmapped class: User</p>
</blockquote>
<p>But in this scenario, I want the polymorphic effects of allowing any user to own a document, while forcing every user of the system to fit into one of the defined roles. Hence, User should not be directly instantiated and is made abstract. </p>
<p>I don't want to use an enum for roles in a non-abstract User class, because I want to be able to add extra properties to the different roles, which may not make sense in certain contexts (I don't wanna have a single User with role set to RegularEmployee that somehow gets a not null managedGroup).</p>
<p>Is this a bug in Grails? Am I missing something? </p>
http://stackoverflow.com/questions/1738536/abstract-class-in-c1Abstract class in c++atch2009-11-15T19:34:21Z2009-11-16T16:41:44Z
<p>Hi, Let's say I've got class: </p>
<pre><code>class Bad_Date
{
private:
const char* _my_msg;
public:
const char* msg() const
{
return _my_msg;
}
};
</code></pre>
<p>And I would like to not be able to create any object of this class but I don't really want to put anything else there and make it pure virtual fnc. Is there any other way to make this class abstract or I have to create dummy fnc and declare it as a pure virtual?
Thank you.</p>
http://stackoverflow.com/questions/1729251/how-to-limit-subclassing-of-public-abstact-class-to-types-in-same-assembly-and-th2How to limit subclassing of public abstact class to types in same assembly and thus allow protected members typed to internal types.Ken Baltrinic2009-11-13T13:41:18Z2009-11-13T14:36:00Z
<p>This question is similar to <strong>c# internal abstract class, how to hide usage outside</strong> but my motiviation is different. Here is the scenario</p>
<p>I started with the following:</p>
<pre><code>internal class InternalTypeA {...}
public class PublicClass
{
private readonly InternalTypeA _fieldA;
...
}
</code></pre>
<p>The above compiles fine. But then I decided that I should extract a base class and tried to write the following:</p>
<pre><code>public abstract class PublicBaseClass
{
protected readonly InternalTypeA _fieldA;
...
}
</code></pre>
<p>And thus the problem, the protected member is visible outside the assembly but is of an internal type, so it won't compile.</p>
<p>The issue at hand is how to I (or can I?) tell the compiler that only public classes in the same assembly as PublicBaseClass may inherit from it and therefore _fieldA will not be expossed outside of the assembly?</p>
<p>Or is there another way to do what I want to do, have a public super class and a set of public base classes that are all in the same assembly and use internal types from that assembly in their common ("protected") code?</p>
<p>The only idea I have had so far is the following:</p>
<pre><code>public abstract class PublicBaseClass
{
private readonly InternalTypeA _fieldA;
protected object FieldA { get { return _fieldA; } }
...
}
public class SubClass1 : PublicBaseClass
{
private InternalTypeA _fieldA { get { return (InternalTypeA)FieldA; } }
}
public class SubClass2 : PublicBaseClass
{
private InternalTypeA _fieldA { get { return (InternalTypeA)FieldA; } }
}
</code></pre>
<p>But that is UGLY!</p>
http://stackoverflow.com/questions/1718517/xcode-compiler-see-a-class-as-abstract-but-its-not1xcode compiler see a class as abstract but it's not!Tony2009-11-11T22:28:03Z2009-11-12T22:20:00Z
<p>Hi,</p>
<p>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 done to have my command tool project "sees" the ACE library.</p>
<ul>
<li>compile the ACE library so that I have a bunch of dynamic libraries: xxx.dylib</li>
<li>add the libraries as a dependency to the target (thru target info -> build )</li>
<li>add the directory where I have the header files to the header path build setting</li>
</ul>
<p>In one of the classes named ACE_Configuration, the header file declare a bunch of function as pure virtual. But in the implementation (cpp) file for the class, the functions are defined.</p>
<p>Now when I subclass from ACE_Configuration and instantiate this subclass in main, when I compile Xcode says I cannot instantiate this subclass because some functions are pure virtual. So in effect, Xcode is only looking at the header file and think ACE_Configuration is an abstract class but in fact it's not. Perhaps I'm not incorporating the ACE library the right way? e.g. I shouldn't use it as a dynamic library and that I need to compile everything together? That can't be i think, I'm not sure what i'm missing. Can someone please help? Thanks!</p>
<p>-Tony </p>
http://stackoverflow.com/questions/1711846/is-the-net-stream-class-poorly-designed4Is the .NET Stream class poorly designed?I. J. Kennedy2009-11-10T22:57:48Z2009-11-11T08:33:14Z
<p>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 have to say that something doesn't quite smell right here.</p>
<p>System.IO.Stream is an abstract class representing a sequence of bytes. It has 10 abstract method/properties: <code>Read, Write, Flush, Length, SetLength, Seek, Position, CanRead, CanWrite, CanSeek</code>. So many abstract members makes it cumbersome to derive from, because you have to override all those methods, even if most end up just throwing <code>NotImplemented</code>.</p>
<p>Users of Stream classes are expected to call <code>CanRead</code>, <code>CanWrite</code>, or <code>CanSeek</code> to find out the capabilities of the Stream, or I suppose just go ahead and call <code>Read</code>, <code>Write</code>, or <code>Seek</code> and see if it throws <code>NotImplemented</code>. Is it just me, or is this crummy design?</p>
<p>Though there are many nits I'd like to pick with the <code>Stream</code> class design, the main one I'd like to ask about is this: Why didn't they use interfaces, like <code>IReadable</code>, <code>IWriteable</code>, <code>ISeekable</code>, instead? Then a new Stream class could gracefully derive from the interfaces it supports. Isn't this the object-oriented way of doing things? Or am I missing something? </p>
<p><strong>Update</strong>: It was pointed out that the value <code>CanRead</code> <em>et al</em> can change at runtime—for example if a <code>FileStream</code> is closed—and the point is taken. However, I remain unconvinced that this is a good design. From where I'm from, trying to read from a file that's already been closed is a bug, or at least an exceptional condition. (And thus throwing an exception is a natural way to handle this situation.)</p>
<p>Does this mean that every time I'm about to <code>Read</code> from a <code>Stream</code>, I should check <code>CanRead</code>? And would that mean I should put a lock in place to avoid a race condition, if it's possible for the value to change sometime in between the <code>CanRead</code> call and the <code>Read</code> call?</p>
http://stackoverflow.com/questions/260666/abstract-class-constructor-in-java5Abstract class constructor in JavaSzere Dyeri2008-11-04T02:46:21Z2009-11-10T11:20:53Z
<p>Can an abstract class have a constructor? If so, how it can be used and for what purposes?</p>
http://stackoverflow.com/questions/1703637/c-abstract-dispose-method0C# abstract Dispose methodSarah Vessels2009-11-09T20:40:10Z2009-11-09T22:09:08Z
<p>I have an abstract class that implements IDisposable, like so:</p>
<pre><code>public abstract class ConnectionAccessor : IDisposable
{
public abstract void Dispose();
}
</code></pre>
<p>In Visual Studio 2008 Team System, I ran Code Analysis on my project and one of the warnings that came up was the following:</p>
<blockquote>
<p>Microsoft.Design : Modify 'ConnectionAccessor.Dispose()' so that it calls Dispose(true), then calls GC.SuppressFinalize on the current object instance ('this' or 'Me' in Visual Basic), and then returns.</p>
</blockquote>
<p>Is it just being silly, telling me to modify the body of an abstract method, or should I do something further in any derived instance of <code>Dispose</code>?</p>
http://stackoverflow.com/questions/1682275/whats-the-utility-of-public-constructors-in-abstract-classes-in-c3Whats the utility of public constructors in abstract classes in C#?Julio César2009-11-05T17:36:33Z2009-11-05T17:42:18Z
<p>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?</p>
<p>Is there any difference in declaring a public constructor, instead of a protected one, in an abstract class? What would you use it for? Why the compiler doesn't complaint?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1674954/providing-abstract-class-member-variables-from-a-subclass2providing abstract class member variables from a subclassthecoop2009-11-04T16:24:33Z2009-11-04T20:03:21Z
<p>What is the 'correct' way of providing a value in an abstract class from a concrete subclass?</p>
<p>ie, should I do this:</p>
<pre><code>abstract class A {
private string m_Value;
protected A(string value) {
m_Value = value;
}
public string Value {
get { return m_Value; }
}
}
class B : A {
B() : this("string value") {}
}
</code></pre>
<p>or this:</p>
<pre><code>abstract class A {
protected A() { }
public abstract string Value { get; }
}
class B : A {
B() {}
public override string Value {
get { return "string value"; }
}
}
</code></pre>
<p>or something else?</p>
<p>And should different things be done if the <code>Value</code> property is only used in the abstract class?</p>
http://stackoverflow.com/questions/1661549/need-some-help-sorting-out-a-major-abstract-pattern-headache-within-my-dal3Need some help sorting out a major abstract pattern headache within my DALGenericTypeTea2009-11-02T14:13:57Z2009-11-03T15:02:31Z
<p>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 Company, Customer, Site, etc. The type is dictated by a PositionTypeId within the table. They're all in the same table as they all havethe same data structure; <em>PositionId, Description and Code</em>.</p>
<p>I have a main abstract class as follows:</p>
<pre><code>public abstract class PositionProvider<T> : DalProvider<T>, IDalProvider where T : IPositionEntity
{
public static PositionProvider<T> Instance
{
get
{
if (_instance == null)
{
// Create an instance based on the current database type
}
return _instance;
}
}
private static PositionProvider<T> _instance;
public PositionType PositionType
{
get
{
return _positionType;
}
}
private PositionType _positionType;
// Gets a list of entities based on the PositionType enum's value.
public abstract List<T> GetList();
internal void SetPositionType(RP_PositionType positionType)
{
_positionType = positionType;
}
}
</code></pre>
<p>I want to then be able to put all the general code within an inherting class that is either SQL or Oracle based. This is my SQL implementation:</p>
<pre><code>public class SqlPositionProvider<T> : PositionProvider<T> where T : IPositionEntity
{
public override List<T> GetList()
{
int positionTypeId = (int)this.PositionType;
using (SqlConnection cn = new SqlConnection(Globals.Instance.ConnectionString))
{
SqlCommand cmd = new SqlCommand("Get_PositionListByPositionTypeId", cn);
cmd.Parameters.Add("@PositionTypeId", SqlDbType.Int).Value = positionTypeId;
cmd.CommandType = CommandType.StoredProcedure;
cn.Open();
return this.GetCollectionFromReader(this.ExecuteReader(cmd));
}
}
}
</code></pre>
<p>I've then create a class for each type as follows (this is the CustomerProvider as an example):</p>
<pre><code>public class CustomerProvider
{
public static PositionProvider<CustomerEntity> Instance
{
get
{
if ((int)PositionProvider<CustomerEntity>.Instance.PositionType == 0)
{
PositionProvider<CustomerEntity>.Instance.SetPositionType(PositionType.Customer);
}
return PositionProvider<CustomerEntity>.Instance;
}
}
}
</code></pre>
<p>This all works fantastically... until I realised that I have certain functions that are related specifically to certain position types. I.e. I need to be able to get all Customers (which is an IPositionType) based on the user permissions.</p>
<p>So I need to add another abstract method:</p>
<pre><code>public abstract List<CustomerEntity> GetCustomersByUserPermission(Guid userId);
</code></pre>
<p>Now, obviously I don't want this within my PositionProvider abstract class as that would mean that method would appear when dealing with the site/company provider.</p>
<p>How can I add this, and other, additional methods without having to duplicate the code within the SqlPositionProvider?</p>
<p><strong>Edit:</strong></p>
<p>The only idea I've come up with is to separate the PositionProvider out into a common property of the CustomerProvider, SiteProvider, etcProvider:</p>
<pre><code>public abstract class CustomerProvider
{
public CustomerProvider()
{
this.Common.SetPositionType(PositionType.Customer);
}
public PositionProvider<CustomerEntity> Common
{
get
{
if (_common == null)
{
DalHelper.CreateInstance<PositionProvider<CustomerEntity>>(out _common);
}
return _common;
}
}
private PositionProvider<CustomerEntity> _common;
public static CustomerProvider Instance
{
get
{
if (_instance == null)
{
DalHelper.CreateInstance<CustomerProvider>(out _instance);
}
return _instance;
}
}
private static CustomerProvider _instance;
public abstract List<CustomerEntity> GetCustomersByUserPermission(Guid userId);
}
</code></pre>
<p>This would allow me to put the specific code within <code>CustomerProvider.Instance.MyNonGenericMethod()</code>, and then to access the <code>PositionProvider</code> I could do <code>CustomerProvider.Instance.Common.GetList()</code>... This does seem like a bit of a hack though.</p>
http://stackoverflow.com/questions/282377/visual-studio-how-do-i-show-all-classes-inherited-from-a-base-class5Visual Studio: How do I show all classes inherited from a base class?Dan Esparza2008-11-11T22:36:11Z2009-11-03T04:05:35Z
<p>In Visual Studio, How do I show all classes inherited from a base class? </p>
<p><strong>For example</strong>, in ASP.NET MVC there are several 'ActionResult' types -- and they all inherit from / implement the base class 'ActionResult'. </p>
<p>It looks like unless you just 'know' that 'View' and 'Json' are valid 'ActionResult' types, there is no way you can easily find this information out. </p>
<p><em>Please prove me wrong.</em></p>
<p>Is there something in the object browser that makes this easy to find out?</p>
<p>I'm even up for suggestions of tools outside of Visual Studio to discover this information about various classes. For example: is there something in Resharper that will help me out?</p>
http://stackoverflow.com/questions/1661690/how-do-i-compare-two-objects-based-on-their-base-class0How do I compare two objects based on their base class?Jan Aagaard2009-11-02T14:42:45Z2009-11-02T15:52:04Z
<p>I would like to be able to compare two classes derived from the same abstract class in C#. The following code illustrates my problem.</p>
<p>I now I could fix the code by making <code>BaseClass</code> non abstract and then return a <code>new BaseClass</code> object in <code>ToBassClass()</code>. But isn't there a more elegant and efficient solution?</p>
<pre><code>abstract class BaseClass
{
BaseClass(int x)
{
X = x;
}
int X { get; private set; }
// It is probably not necessary to override Equals for such a simple class,
// but I've done it to illustrate my point.
override Equals(object other)
{
if (!other is BaseClass)
{
return false;
}
BaseClass otherBaseClass = (BaseClass)other;
return (otherBaseClass.X == this.X);
}
BaseClass ToBaseClass()
{
// The explicit is only included for clarity.
return (BaseClass)this;
}
}
class ClassA : BaseClass
{
ClassA(int x, int y)
: base (x)
{
Y = y;
}
int Y { get; private set; }
}
class ClassB : BaseClass
{
ClassB(int x, int z)
: base (x)
{
Z = z;
}
int Z { get; private set; }
}
var a = new A(1, 2);
var b = new B(1, 3);
// This fails because despite the call to ToBaseClass(), a and b are treated
// as ClassA and ClassB classes so the overridden Equals() is never called.
Assert.AreEqual(a.ToBaseClass(), b.ToBaseClass());
</code></pre>
http://stackoverflow.com/questions/1658159/c-functions-for-an-abstract-base-class2C++ Functions for an Abstract Base Classanon2009-11-01T19:57:33Z2009-11-01T20:52:20Z
<p>Suppose I want to have an inheritance hierarchy like this.</p>
<pre><code>class Base
class DerivedOne : public Base
class DerivedTwo : public Base
</code></pre>
<p>The base class is not meant to be instantiated, and thus has some pure virtual functions that the derived classes must define, making it an abstract base class.</p>
<p>However, there are some functions that you would like your derived classes to get from your base class. These functions modify private data members that both <em>DerivedOne</em> and <em>DerivedTwo</em> will have.</p>
<pre><code>class Base {
public:
virtual void MustDefine() =0; // Function that derived classes must define
void UseThis(); // Function that derived classes are meant to use
};
</code></pre>
<p>However, the <code>UseThis()</code> function is meant to modify private data members. That's where the question comes in. Should I give the <em>Base</em> class dummy private data members? Should I give it protected data members (and thus the derived classes won't declare their own private data members). I know the second approach will decrease encapsulation.</p>
<p>What is the best approach to a situation like this? If a more detailed explanation is needed I'd be happy to provide it.</p>
http://stackoverflow.com/questions/426110/asp-net-controller-base-class-user-identity-name2ASP.NET Controller Base Class User.Identity.NameMasterfu2009-01-08T21:41:06Z2009-10-30T15:55:53Z
<p>Hi folks</p>
<p>As described in <a href="http://www.asp.net/Learn/mvc/tutorial-13-cs.aspx" rel="nofollow">this post</a>, I created an abstract base controller class in order to be able to pass data from a controller to master.page. In this case, I want to lookup a user in my db, querying for User.Identity.Name (only if he is logged in).</p>
<p>However, I noticed that in this abstract base class the <code>User</code> property is always <code>null</code>. What do I have to do to get this working?</p>
<p>Thanks a lot</p>
http://stackoverflow.com/questions/1538391/as3-abstract-classes1AS3 - Abstract Classeslk2009-10-08T14:59:57Z2009-10-27T12:38:48Z
<p>How can I make an abstract class in AS3 nicely?</p>
<p>I've tried this:</p>
<pre><code>public class AnAbstractClass
{
public function toBeImplemented():void
{
throw new NotImplementedError(); // I've created this error
}
}
public class AnConcreteClass extends AnAbstractClass
{
override public function toBeImplemented():void
{
// implementation...
}
}
</code></pre>
<p>But.. I don't like this way. And doesn't have compile time errors.</p>
http://stackoverflow.com/questions/1608975/abstract-base-class-inheritance-in-django-with-foreignkey1Abstract base class inheritance in Django with foreignkeySandro2009-10-22T18:03:46Z2009-10-22T18:43:56Z
<p>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 three child classes: Butcher, Baker, CandlestickMaker (they are located in their own apps under their respective names).</p>
<p>Each of the child classes has a need for a variable number of things like email addresses, phone numbers, URLs, etc, ranging in number from 0 and up. So I want a many-to-one/ForeignKey relationship between these classes and the company they refer to. Here is roughly what I imagine BasicCompany/models.py looking like:</p>
<pre><code>from django.contrib.auth.models import User
from django.db import models
class BasicCompany(models.Models)
owner = models.ForeignKey(User)
name = models.CharField()
street_address = models.CharField()
#etc...
class Meta:
abstract = True
class EmailAddress(models.model)
email = models.EmailField()
basiccompany = models.ForeignKey(BasicCompany, related_name="email_addresses")
#etc for URLs, PhoneNumbers, PaymentTypes.
</code></pre>
<p>What I don't know how to do is inherit EmailAddress, URLs, PhoneNumbers (etc) into the child classes. Can it be done, and if so, how? If not, I would appreciate your advice on workarounds.</p>
http://stackoverflow.com/questions/1607096/abstract-base-class-and-data-members-how-does-it-work0Abstract Base Class and data members? How does it work? Wawel1002009-10-22T13:14:53Z2009-10-22T13:21:51Z
<p>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 compiler handle this data for cases where we have a number of derived class objects that
inherit the ABC. Does the data become associated with the derived class object? </p>
http://stackoverflow.com/questions/1031072/c-inheritance3C# inheritanceAndrei2009-06-23T07:22:24Z2009-10-20T21:08:09Z
<p>Let's say I have the following code:</p>
<pre><code>interface ISomeInterface
{
void DoSomething();
void A();
void B();
}
public abstract class ASomeAbstractImpl : ISomeInterface
{
public abstract void A();
public abstract void B();
public void DoSomething()
{
// code here
}
}
public class SomeImpl : ASomeAbstractImpl
{
public override void A()
{
// code
}
public override void B()
{
// code
}
}
</code></pre>
<p>The problem is that i wish to have the <code>ASomeAbstractImpl.DoSomething()</code> method sealed (final) so no other class could implement it.
As the code is now <code>SomeImpl</code> could have a method called <code>DoSomething()</code> and that could be called (it would not override the method with the same name from the abstract class, because that's not marked as virtual), yet I would like to cut off the possibility of implementing such a method in <code>SomeImpl</code> class.</p>
<p>Is this possible?</p>
http://stackoverflow.com/questions/370962/why-cant-static-methods-be-abstract-in-java8Why can't static methods be abstract in Javahhafez2008-12-16T10:45:27Z2009-10-20T14:27:45Z
<p>The question is in Java why can't I define an abstract static method? for example</p>
<pre><code>abstract class foo {
abstract void bar( ); // <-- this is ok
abstract static void bar2(); //<-- this isn't why?
}
</code></pre>
http://stackoverflow.com/questions/1591269/using-an-abstract-class-to-implement-a-stack-of-elements-of-the-derived-class0Using an abstract class to implement a stack of elements of the derived classPatrick Oscity2009-10-19T21:27:43Z2009-10-19T21:38:18Z
<p>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.</p>
<p>The Problem: I have a class named "shape3d" from which i derived the classes "cube" and "sphere". Now i have to implement "shape3d_stack", which is meant be able of holding objects of the types "cube" and "sphere". I used arrays for this and it worked quite well when i tried to do so with a stack of ints. I tried to do it like so:</p>
<p>shape3d_stack.cpp:</p>
<pre><code>15 // more stuff
16
17 shape3d_stack::shape3d_stack (unsigned size) :
18 array_ (NULL),
19 count_ (0),
20 size_ (size)
21 { array_ = new shape3d[size]; }
22
23 // more stuff
</code></pre>
<p>but, unfortunately, the compiler tells me:</p>
<pre><code>g++ -Wall -O2 -pedantic -I../../UnitTest++/src/ -c shape3d_stack.cpp -o shape3d_stack.o
shape3d_stack.cpp: In constructor ‘shape3d_stack::shape3d_stack(unsigned int)’:
shape3d_stack.cpp:21: error: cannot allocate an object of abstract type ‘shape3d’
shape3d.hpp:10: note: because the following virtual functions are pure within ‘shape3d’:
shape3d.hpp:16: note: virtual double shape3d::area() const
shape3d.hpp:17: note: virtual double shape3d::volume() const
</code></pre>
<p>i guess this must be some kind of really ugly design error caused by myself. so how would be the correct way of using all kinds of objects derived from "shape3d" with my stack?</p>
http://stackoverflow.com/questions/542218/abstract-class-am-i-over-thinking-this-or-doing-it-right1Abstract Class - Am I over-thinking this or doing it right?phsr2009-02-12T16:47:23Z2009-10-15T15:02:42Z
<p>So I am utilizing CollectionBase as an inherited class for custom collections. I am utilizing CollectionBase through an abstract class so that I don't repeated knowledge (following the DRY principle). The abstract class is defined as a generic class also. Here is how I am implementing my class: </p>
<pre><code> public abstract class GenericCollectionBase<T,C> : CollectionBase
{
//Indexders, virtual methods for Add, Contains, IndexOf, etc
}
</code></pre>
<p>I utilize this so I don't have to implement these base methods in 10+ classes. </p>
<p>My question is am I taking this too far when I override the Equals method like this: </p>
<pre><code> public override bool Equals(object obj)
{
if (obj is C)
{
GenericCollectionBase<T, C> collB =
obj as GenericCollectionBase<T, C>;
if (this.Count == collB.Count)
{
for (int i = 0; i < this.Count; ++i)
{
if (!this[i].Equals(collB[i]))
return false;
}
return true;
}
}
return false;
}
</code></pre>
<p>Am I trying to accomplish too much with my abstract, or doing this the correct way?</p>
<p>EDIT: This is written for .Net 2.0 and do not have access to 3.5 to utilize things like LINQ</p>
http://stackoverflow.com/questions/1566445/accessing-a-method-from-a-templated-derived-class-without-using-virtual-functions0Accessing a method from a templated derived class without using virtual functions in c++?Dan2009-10-14T14:04:30Z2009-10-15T09:20:35Z
<p>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:</p>
<pre><code>class Base
{
public:
Base() { }
virtual ~Base() { }
private:
int m_anotherVariable;
};
template <typename T>
class Derived : public Base
{
public:
Derived(T value) : m_value(value) { }
~Derived() { }
T value() { return m_value; }
void setValue(T value) { m_value = value; }
private:
T m_value;
};
int main()
{
Base* b = new Derived<int>(5);
int v = b->value();
return 0;
}
</code></pre>
<p>Compilation errors:</p>
<pre><code>error: 'class Base' has no member named 'value'
</code></pre>
http://stackoverflow.com/questions/463894/casting-to-abstract-class-or-interface-when-generics-are-used1Casting to abstract class or interface when generics are usedboon2009-01-21T02:09:32Z2009-10-15T06:55:33Z
<p>I have this method Verify_X which is called during databind for a listbox selected value. The problem is the strongly typed datasource. I want to use the abstract class BaseDataSource or an interface to call the methods supported:
Parameters[] and Select(), Instead of using the most specific implementation as seen below.</p>
<p>This is so one method can be used for all the different types of datasources I have instead of having a method for each. They all inherit the same way.</p>
<p>Here is the chain of inheritance / implementation</p>
<pre><code>public class DseDataSource : ProviderDataSource<SCCS.BLL.Dse, DseKey>
public abstract class ProviderDataSource<Entity, EntityKey> : BaseDataSource<Entity, EntityKey>, ILinkedDataSource, IListDataSource
where Entity : SCCS.BLL.IEntityId<EntityKey>, new()
where EntityKey : SCCS.BLL.IEntityKey, new()
public abstract class BaseDataSource<Entity, EntityKey> : DataSourceControl, IListDataSource, IDataSourceEvents
where Entity : new()
where EntityKey : new()
</code></pre>
<p>The BaseDataSource has the methods and properties I need. DseDataSource is implemented the following way:</p>
<pre><code>public class DseDataSource : ProviderDataSource<SCCS.BLL.Dse, DseKey>
</code></pre>
<p>I know it is possible to edit the class DseDataSource, add an interface to access Parameters[] and Select(), then program against that, which allows what I want, but this requires editing the NetTiers libraries and I am curious to see if this can be done since it seemed so difficult.</p>
<pre><code> public static string Verify_DSE(string valueToBind, DseDataSource dataSource)
{
if (ListContainsValue(dataSource.GetEntityList(), valueToBind)) return valueToBind;
CustomParameter p = dataSource.Parameters["WhereClause"] as CustomParameter;
if (p != null)
{
p.Value = "IsActive=true OR Id=" + valueToBind;
dataSource.Select();
return valueToBind;
}
return string.Empty;
}
private static bool ListContainsValue(IEnumerable list, string value)
{
if (value.Length == 0) return true;
foreach (object o in list)
{
IEntity entity = o as IEntity;
if (entity != null)
{
if (entity.Id.ToString() == value)
return true;
}
}
return false;
}
</code></pre>
<p>The end result would be code such as:</p>
<pre><code>public static string Verify(string valueToBind, object dataSource)
{
//what is the correct way to convert from object
BaseDataSource baseInstance = dataSource as BaseDataSource;
if baseInstance != null)
{
if (ListContainsValue(baseInstance.GetEntityList(), valueToBind)) return valueToBind;
CustomParameter p = baseInstance.Parameters["WhereClause"] as CustomParameter;
if (p != null)
{
p.Value = "IsActive=true OR Id=" + valueToBind;
baseInstance.Select();
return valueToBind;
}
}
return string.Empty;
}
</code></pre>
http://stackoverflow.com/questions/1567454/why-is-my-polymorphic-parent-class-calling-the-subclass-method-from-within-itself0Why is my Polymorphic Parent class calling the Subclass Method from within itself?Mohgeroth2009-10-14T16:29:58Z2009-10-14T17:14:44Z
<p>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 to get this from within either toString method.</p>
<pre><code>public class PolyEmployees {
public static void main(String[] args) {
Employee [] myEmployees = {
new Hourly("Joan Rivers", "Human Resources", 12.45, 34.3),
new Hourly("Jason Nezbit", "Accounting", 15.25, 46.0),
new Hourly("Ingrid Homes", "Secretary", 10.11, 38.7),
new Salaried("Amy Liberman", "Human Resources Executive", 32.50),
new Salaried("Xander Xavar", "Resource Processing", 29.20),
new Salaried("Milly Rockhome", "PR Executive", 65.28)
};
// Output all employee types
for (int i = 0; i < myEmployees.length; i++) {
System.out.println("\n" + myEmployees[i].toString());
}
}
}
/*
* Employee abstract class
*/
abstract public class Employee {
private String mName;
private String mDepartment;
protected Double mRate;
// Constructor
public Employee(String mName, String mDepartment, Double mRate) {
this.mName = mName;
this.mDepartment = mDepartment;
this.mRate = mRate;
}
// Annual Pay
public Double pay() { // 40 Hours a Week, 52 weeks in a year
return ((this.mRate * 40) * 52);
}
@Override
public String toString() {
return "Employee: " + this.mName + "\nDepartment: " + this.mDepartment + "\nAnnual Pay: " + this.pay();
}
}
/*
* Hourly employee class
*/
public class Hourly extends Employee {
private Double mHours;
public Hourly(String mName, String mDepartment, Double mRate, Double mHours) {
super(mName, mDepartment, mRate);
this.mHours = mHours;
}
@Override
public Double pay() { // Weekly Pay, deals with overtime for hourly employee
if (this.mHours > 40.0) {
return ((40 * this.mRate) + ((this.mHours-40) * (this.mRate * 1.5)));
}
else {
return (this.mHours * this.mRate);
}
}
public String toString() {
return super.toString() + "\tWeekly Pay: " + pay();
}
}
/*
* Salaried Employee Class
*/
public class Salaried extends Employee{
public Salaried(String mName, String mDepartment, Double mRate) {
super(mName, mDepartment, mRate);
}
@Override
public Double pay() { // Weekly Pay
return (this.mRate * 40);
}
@Override
public String toString() {
return super.toString() + "\tWeekly Pay: " + this.pay();
}
}
</code></pre>
<p>I get all the output I want except for annual pay. Stepping through the debugger it returns to the childs pay method even when calling from within the parent. Since it's overridden I am not really surprised by this, but part of my deliverable is to get weekly from the subclass and annual from the super.</p>
<p>So that begs my question, how can I get Annual pay from the parent? Do I have no choice but to cast it as an employee as part of my system output or is there something I am missing?</p>
<p>And on a side note, I love how fluid this site is. Not many places I've been to show your post live as you type it.</p>
<p>NOTE ON COMMENT: According to my deliverables, both the salaried and hourly employees toString must return weekly pay. The employee abstract class itself contains the method to return the annual pay.</p>