active questions tagged inheritance - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:11:22Z http://stackoverflow.com/feeds/tag/inheritance http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1804398/c-using-a-virtually-inherited-function-non-virtually 1 [C++] Using a virtually inherited function non-virtually? Nubsis 2009-11-26T15:41:02Z 2009-11-27T08:10:17Z <p>Hello!</p> <p>I have run into trouble trying to implement functionality for serializing some classes in my game. I store some data in a raw text file and I want to be able to save and load to/from it. The details of this, however, are irrelevant. The problem is that I am trying to make each object that is interesting for the save file to be able to serialize itself. For this I have defined an interface ISerializable, with purely virtual declarations of operator&lt;&lt; and operator>>.</p> <p>The class Hierarchy looks something like this</p> <pre><code> -&gt; GameObject -&gt; Character -&gt; Player ... ISerializable -&gt; Item -&gt; Container ... -&gt; Room ... </code></pre> <p>This means there are many possible situations for serializing the objects of the different classes. Containers, for instance, should call operator&lt;&lt; on all contained items.</p> <p>Now, since operator>> is virtual, i figured if I wanted to serialize something that implements the functionality defined in ISerializable i could just do something like</p> <pre><code>ostream &amp; Player::operator&lt;&lt;(ostream &amp; os){ Character::operator&lt;&lt;(os); os &lt;&lt; player_specific_property 1 &lt;&lt; " " &lt;&lt; player_specific_property 2 &lt;&lt; "..."; return os; } </code></pre> <p>and then</p> <pre><code>ostream &amp; Character::operator&lt;&lt;(ostream &amp; os){ GameObject::operator&lt;&lt;(os); os &lt;&lt; character_specific_property 1 &lt;&lt; " " &lt;&lt; character_specific_property 2 &lt;&lt; "..."; return os; } </code></pre> <p>but I quickly learnt that this first attempt was illegal. What I'm asking here is <strong>how do I work around this</strong>? </p> <p>I don't feel like implementing a function manually for each class. I guess I'm looking for something like the <code>super</code> functionality from Java.</p> <p>Any help is appreciated.</p> <p>-- <strong>COMMENTS ON EDIT</strong> ------------ </p> <p>Alright, last time I was in a hurry when I was writing the question. The code is now more like it was when I tried to compile it. I fixed the question and the problem I had was unrelated to the question asked. I'm ashamed to say it was caused by an error in the wake of a large refactoring of the code, and the fact that the operator was not implemented in every base class.</p> <p>Many thanks for the replies however!</p> http://stackoverflow.com/questions/1802201/vb-net-overridable-property-not-same-as-c-virtual-property 1 VB.net Overridable property not same as c# Virtual property? Petoj 2009-11-26T08:05:19Z 2009-11-26T08:09:38Z <p>Well its simple here you have my vb.net code:</p> <pre><code>Public Class Class1 Public Overridable ReadOnly Property Name() As String Get Return Nothing End Get End Property End Class Public Class Class2 Inherits Class1 Public Overloads ReadOnly Property Name() As String Get Return "Class2" End Get End Property End Class Module Module1 Sub Main() Dim c2 As New Class2() Console.WriteLine(c2.Name) Dim c1 As Class1 = CType(c2, Class1) Console.WriteLine(c1.Name) End Sub End Module </code></pre> <p>And here comes the c# code:</p> <pre><code>class Class1 { public virtual string Name { get { return null; } } } class Class2 : Class1 { public override string Name { get { return "Class2"; } } } class Program { static void Main(string[] args) { Class2 c2 = new Class2(); Console.WriteLine(c2.Name); Class1 c1 = (Class1)c2; Console.WriteLine(c1.Name); } } </code></pre> <p>i did expekt them to do the same thing but guess what thay dont! C# Output</p> <p>Class2</p> <p>Class2</p> <p>VB.NET output</p> <p>Class2</p> <p>{Nothing}</p> <p>(It dosent print nothing it just prints an empty line) Why does vb.net go for the base class implementation when its overriden?</p> http://stackoverflow.com/questions/1783883/special-interaction-between-derived-objects-i-e-mutiple-dispatch 0 Special interaction between derived objects (i.e. mutiple dispatch) Morningcoffee 2009-11-23T15:32:22Z 2009-11-26T08:06:16Z <p>So, I have a list of base class pointers:</p> <pre><code>list&lt;Base*&gt; stuff; </code></pre> <p>Then, at some point one of the objects will look through all other objects.</p> <pre><code>Base * obj = ...; // A pointer from the 'stuff'-list. for (list&lt;Base*&gt;::iterator it = stuff.begin(); it != stuff.end(); it++) { if (obj == *it) continue; // Problem scenario is here obj-&gt;interact(it); } </code></pre> <p>What I want to achieve is that depending on what derived type<code>obj</code> and <code>*it</code> are, they will interact differently with each other, i.e. <code>DerivedA</code> will destroy itself if it's interacting with <code>DerivedB</code>, but only if <code>DerivedB</code> has set the property <code>bool c = true;</code>. So something like:</p> <pre><code>struct Base { virtual void interact(Base * b); // is always called }; struct DerivedA : public Base { virtual void interact(Base * b){} // is never called virtual void interact(DerivedB * b) // is never called { if (b-&gt;c) delete this; } }; struct DerivedB : public Base { bool c = false; virtual void interact(Base * b){} // is never called virtual void interact(DerivedA * a) // is never called { c = true; } }; // and many many more Derived classes with many many more specific behaviors. </code></pre> <p>At compile time, they are both <code>Base</code>-pointers and will not be able to call each other and expect the type to magically appear. If this was a one way relation, i.e. I knew what type of one of them, I could use the <a href="http://en.wikipedia.org/wiki/Visitor%5Fpattern" rel="nofollow">Visitor pattern</a>. I believe I should use some kind of <a href="http://en.wikipedia.org/wiki/Mediator%5Fpattern" rel="nofollow">Mediator pattern</a> but can't really figure out how since the mediator too will hold <code>Base</code>-pointers and thus it won't make a difference.</p> <p>I haven't got a clue on how to continue... anyone?</p> <p><hr></p> <p><strong>Background:</strong></p> <p>I'm creating a game, this problem originates from the <code>Room</code> class who keeps track of it's contents, i.e. what <code>GameObject</code>s are currently in the room. </p> <p>Sometimes, an object moves (for example, the player). The room will then loop over all objects that are on the soon-to-be-moved-upon floor tile (the loop above) and will check if the objects will interact with eachother. </p> <p>For example, if it's a <code>Troll</code> the <code>Player</code> would want to hurt it. Or he would just like to hurt any <code>Character</code> (both <code>Troll</code> and <code>Player</code> are derived from <code>Character</code>) that originates from any another "team" (which can be accessed from the function <code>getAlignment()</code>, which all <code>Characters</code> implement).</p> http://stackoverflow.com/questions/1801962/inheritence-how-to-return-the-subclass-object 0 inheritence how to return the subclass object? shahjapan 2009-11-26T06:54:10Z 2009-11-26T07:11:11Z <pre><code> Base Class B | | ---- | | | | D1 D2 public static object GetDerivedClass(Type t1, MyProcess p1) { DerivedClass D1 = null; DerivedClass D2 = null; if (t1 is typeof(Derived) { Process(D1,p1); return D1; } else if(t1 is typeof(Derived) { Process(D2,p1); return D2; } } </code></pre> <p>My Question is what will be the generic way to return the type of object which is passed as t1 Type,</p> <p>because in real implementation I have deep hierarchy of my design pattern with lots of D1,D2,etc...</p> http://stackoverflow.com/questions/1799497/c-overloaded-function-issue 0 C++ overloaded function issue swongu 2009-11-25T19:47:09Z 2009-11-25T20:00:18Z <p>Why does the compiler not find the base class function signature? Changing <code>foo( a1 )</code> to <code>B::foo( a1 )</code> works.</p> <p>Code:</p> <pre><code>class A1 ; class A2 ; class B { public: void foo( A1* a1 ) { a1 = 0 ; } } ; class C : public B { public: void foo( A2* /*a2*/ ) { A1* a1 = 0 ; foo( a1 ) ; } } ; int main() { A2* a2 = 0 ; C c ; c.foo( a2 ) ; return 0 ; } </code></pre> <p>Compiler error (VS2008):</p> <pre><code>error C2664: 'C::foo' : cannot convert parameter 1 from 'A1 *' to 'A2 *' Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast </code></pre> http://stackoverflow.com/questions/1797351/virtual-derived-class-of-a-non-virtual-base-class 0 virtual derived class of a non-virtual base class VNarasimhaM 2009-11-25T14:41:57Z 2009-11-25T18:17:35Z <p>I have a virtual class that has been derived from a non virtual class. But when I c-style cast the derived class to base class, the class is corrupted. I am looking at the member variables using the debugger and the member variables are all corrupted when I do that cast. I see there is a 4 byte discrepency when I do that cast(may be the virtual pointer) using debugger. For Ex:</p> <pre><code>class A//non-virtual class { ~A(); int fd; }; class B:public A { virtual ~B(); }; </code></pre> <p>Now say the address of obj of type B is: 0x9354ed0. Now when I cast it (A*)(0x9354ed0) debugger moves the bytes by 4 bytes. So starting address of the casted obj is 0x935ed4</p> <p>Is it wrong to cast a derived virtual class to base non-virtual class? What is the reason for 4 byte discrepancy? And what is the right way to cast it? Thanks for any input or explanation.</p> http://stackoverflow.com/questions/1798360/can-a-base-class-tell-what-item-is-inheriting-it 0 can a base class tell what item is inheriting it Ben 2009-11-25T16:57:56Z 2009-11-25T17:03:11Z <p>I have a base clase "AsyncHandlerBase"</p> <pre><code> public class CameraAlertsQuery : AsyncHandlerBase </code></pre> <p>the base class is inherited by multiple pages. is there any way in the base class to execute specific code when a particular class is inheriting it? I would have that particular code executed on the page itself, but it is not possible in this case.</p> http://stackoverflow.com/questions/1796556/django-multi-table-inheritance-vs-specifying-explicit-onetoone-relationship-in-mo 0 Django Multi-Table Inheritance VS Specifying Explicit OneToOne Relationship in Models chefsmart 2009-11-25T12:18:20Z 2009-11-25T16:25:51Z <p>Hope all this makes sense :) I'll clarify via comments if necessary. Also, I am experimenting using bold text in this question, and will edit it out if I (or you) find it distracting. With that out of the way...</p> <p>Using django.contrib.auth gives us User and Group, among other useful things that I can't do without (like basic messaging).</p> <p>In my app I have several different types of users. A user can be of only one type. That would easily be handled by groups, with a little extra care. <strong>However, these different users are related to each other in hierarchies / relationships.</strong></p> <p>Let's take a look at these users: - </p> <p><strong>Principals - "top level" users</strong></p> <p><strong>Administrators - each administrator reports to a Principal</strong></p> <p><strong>Coordinators - each coordinator reports to an Administrator</strong></p> <p>Apart from these <strong>there are other user types that are not directly related</strong>, but may get related later on. For example, "Company" is another type of user, and can have various "Products", and products may be supervised by a "Coordinator". "Buyer" is another kind of user that may buy products.</p> <p>Now all these <strong>users have various other attributes, some of which are common to all types of users and some of which are distinct only to one user type</strong>. For example, all types of users have to have an address. On the other hand, only the Principal user belongs to a "BranchOffice".</p> <p>Another point, which was stated above, is that <strong>a User can only ever be of one type</strong>.</p> <p>The app also <strong>needs to keep track of who created and/or modified Principals, Administrators, Coordinators, Companies, Products etc</strong>. (So that's two more links to the User model.)</p> <p>In this scenario, is it a good idea to use Django's multi-table inheritance as follows: - </p> <pre><code>from django.contrib.auth.models import User class Principal(User): # # # branchoffice = models.ForeignKey(BranchOffice) landline = models.CharField(blank=True, max_length=20) mobile = models.CharField(blank=True, max_length=20) created_by = models.ForeignKey(User, editable=False, blank=True, related_name="principalcreator") modified_by = models.ForeignKey(User, editable=False, blank=True, related_name="principalmodifier") # # # </code></pre> <p>Or should I go about doing it like this: - </p> <pre><code>class Principal(models.Model): # # # user = models.OneToOneField(User, blank=True) branchoffice = models.ForeignKey(BranchOffice) landline = models.CharField(blank=True, max_length=20) mobile = models.CharField(blank=True, max_length=20) created_by = models.ForeignKey(User, editable=False, blank=True, related_name="principalcreator") modified_by = models.ForeignKey(User, editable=False, blank=True, related_name="principalmodifier") # # # </code></pre> <p>Please keep in mind that there are other user types that are related via foreign keys, for example: -</p> <pre><code>class Administrator(models.Model): # # # principal = models.ForeignKey(Principal, help_text="The supervising principal for this Administrator") user = models.OneToOneField(User, blank=True) province = models.ForeignKey( Province) landline = models.CharField(blank=True, max_length=20) mobile = models.CharField(blank=True, max_length=20) created_by = models.ForeignKey(User, editable=False, blank=True, related_name="administratorcreator") modified_by = models.ForeignKey(User, editable=False, blank=True, related_name="administratormodifier") </code></pre> <p>I am aware that Django does use a one-to-one relationship for multi-table inheritance behind the scenes. I am just not qualified enough to decide which is a more sound approach.</p> http://stackoverflow.com/questions/1797109/any-better-way-to-tailor-a-library-than-inheritance 0 Any better way to tailor a library than inheritance? IK 2009-11-25T14:04:35Z 2009-11-25T14:17:18Z <p>Most likely an OO concept question/situation:</p> <p>I have a library that I use in my program with source files available. I've realized I need to tailor the library to my needs, say I need to modify the behavior of a single functions F in class C, while leaving the original library's source intact, to be able to painlessly upgrade it when needed.</p> <p>I realize I can make my own class C1 inherited from C, place it in my source tree, and write the function F how I see it fit, replacing all occurrences of</p> <pre><code>myObj = new C(); </code></pre> <p>with</p> <pre><code>myObj = new C1(); </code></pre> <p>throughout my code.</p> <p>What is the 'proper' way of doing this? I suspect the inheritance method I described has problems, as the library in its internals would still use C::F instead of my C1::F, and it would be way cooler if I could still refer to C::F not some strange C1::F in my code.</p> <p>For those that care - the language is PHP5, and I'm kinda OOP newbie :)</p> http://stackoverflow.com/questions/1795758/linq-entity-inheritance-makes-big-sql-sentences 0 Linq Entity Inheritance makes BIG SQL Sentences Roman 2009-11-25T09:39:29Z 2009-11-25T09:39:29Z <p>We are developing an application with a base entity with more than 10 childs (which inherited from it).</p> <p>When we make any request with Linq to the base entity we get a SQL statement with a "UNION ALL" for each child. To make a Count() over the base entity it takes near one second and getting only one row can takes two seconds.</p> <p>For this code:</p> <pre><code>public bool Exists(int appId, string loginName, DateTime userRegDate, long ahsayId) { var backupsets = from backupset in _entities.AhsayBackupSets where backupset.User.Appliance.Id == appId &amp;&amp; backupset.User.LoginName == loginName &amp;&amp; backupset.User.RegistrationDate == userRegDate &amp;&amp; backupset.AhsayId == ahsayId select backupset; return backupsets.Count() &gt; 0; } </code></pre> <p>, we get this SQL sentence:</p> <pre><code>exec sp_executesql N'SELECT [GroupBy1].[A1] AS [C1] FROM ( SELECT COUNT(1) AS [A1] FROM [dbo].[AhsayBackupSets] AS [Extent1] LEFT OUTER JOIN (SELECT [UnionAll9].[C1] AS [C1] FROM (SELECT [UnionAll8].[C1] AS [C1] FROM (SELECT [UnionAll7].[C1] AS [C1] FROM (SELECT [UnionAll6].[C1] AS [C1] FROM (SELECT [UnionAll5].[C1] AS [C1] FROM (SELECT [UnionAll4].[C1] AS [C1] FROM (SELECT [UnionAll3].[C1] AS [C1] FROM (SELECT [UnionAll2].[C1] AS [C1] FROM (SELECT [UnionAll1].[Id] AS [C1] FROM (SELECT [Extent2].[Id] AS [Id] FROM [dbo].[AhsayOracleBackupSets] AS [Extent2] UNION ALL SELECT [Extent3].[Id] AS [Id] FROM [dbo].[AhsaySystemStateBackupSets] AS [Extent3]) AS [UnionAll1] UNION ALL SELECT [Extent4].[Id] AS [Id] FROM [dbo].[AhsayMysqlBackupSets] AS [Extent4]) AS [UnionAll2] UNION ALL SELECT [Extent5].[Id] AS [Id] FROM [dbo].[AhsayMssqlBackupSets] AS [Extent5]) AS [UnionAll3] UNION ALL SELECT [Extent6].[Id] AS [Id] FROM [dbo].[AhsayFileBackupSets] AS [Extent6]) AS [UnionAll4] UNION ALL SELECT [Extent7].[Id] AS [Id] FROM [dbo].[AhsayExchangeServerBackupSets] AS [Extent7]) AS [UnionAll5] UNION ALL SELECT [Extent8].[Id] AS [Id] FROM [dbo].[AhsayDominoBackupSets] AS [Extent8]) AS [UnionAll6] UNION ALL SELECT [Extent9].[Id] AS [Id] FROM [dbo].[AhsayNotesBackupSets] AS [Extent9]) AS [UnionAll7] UNION ALL SELECT [Extent10].[Id] AS [Id] FROM [dbo].[AhsayShadowProtectBackupSets] AS [Extent10]) AS [UnionAll8] UNION ALL SELECT [Extent11].[Id] AS [Id] FROM [dbo].[AhsayWindowsSystemBackupSets] AS [Extent11]) AS [UnionAll9] UNION ALL SELECT [Extent12].[Id] AS [Id] FROM [dbo].[AhsayExchangeMailBackupSets] AS [Extent12]) AS [UnionAll10] ON [Extent1].[Id] = [UnionAll10].[C1] LEFT OUTER JOIN [dbo].[AhsayUsers] AS [Extent13] ON [Extent1].[AhsayUserId] = [Extent13].[Id] INNER JOIN [dbo].[AhsayUsers] AS [Extent14] ON [Extent1].[AhsayUserId] = [Extent14].[Id] WHERE ([Extent13].[ApplianceId] = @p__linq__0) AND ([Extent13].[LoginName] = @p__linq__1) AND ([Extent14].[RegistrationDate] = @p__linq__2) AND ([Extent1].[AhsayId] = @p__linq__3) ) AS [GroupBy1]',N'@p__linq__0 int,@p__linq__1 nvarchar(4000),@p__linq__2 datetime,@p__linq__3 bigint',@p__linq__0=2,@p__linq__1=N'antonio',@p__linq__2='2009-10-22 18:07:17',@p__linq__3=1256305376226 </code></pre> <p>As you can imagine, it takes a lot of time (in this case, 1 second, but there is another sentence a lot bigger which takes 4 seconds), and this query is made many times.</p> <p>Is there some way to reduce the SQL overhead? We know we can use stored procedures for heavy sentences but we don't want to lose the Linq flexibility.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1791359/c-interface-inheritance-getters-setters 2 C#: interface inheritance getters/setters Eamon Nerbonne 2009-11-24T16:49:37Z 2009-11-24T17:12:21Z <p>I have a set of interfaces which are used in close conjunction with particular mutable object.</p> <p>Many users of the object only need the ability to read values from the object, and then only a few properties. To avoid namespace pollution (easier intellisense) and to get across the usage intent, I'd like to have a small base interface which only exposes a few "key" properties in a read-only fashion.</p> <p>However, almost all implementations will support the full interface, which includes modifiability.</p> <p>Unfortunately, I ran into a roadblock expressing that concept in C#:</p> <pre><code>interface IBasicProps { public int Priority { get; } public string Name {get;} //... whatever } interface IBasicPropsWriteable:IBasicProps { public int Priority { set; } //warning CS0108: [...] hides inherited member [...] public string Name { set; } //... whatever } </code></pre> <p>I certainly wasn't intending to hide any members, so that aint good!</p> <p>Of course, I can solve this using methods just fine, but what's the <em>right</em> choice? I'd like to keep the "core" interface as small as possible even if splitting the interfaces serves no purpose other than communicating intent. With split interfaces, it's just really obvious which methods aren't going to do any updating, and it makes writing code a bit clearer (not to mention also allows nice-n-simple static singleton stubs that suffice for quite a few simple cases).</p> <p>I'd like to avoid any abstract classes and the like; they make reimplementation or quick single-purpose shims all that more complex and hard-to-grok.</p> <p>So, ideas?</p> http://stackoverflow.com/questions/1784805/how-to-get-a-base-class-method-return-type-to-be-the-subclass-type 1 How to get a base class method return type to be the subclass type? adam0101 2009-11-23T17:48:07Z 2009-11-24T15:35:47Z <p>I have a copy function that I'd like to override in subclasses to return the type of the subclass. Here are my interfaces:</p> <pre><code>Public Interface IBase(Of T) Function Copy() As T End Interface Public Interface ICar Inherits IBase(Of ICar) End Interface Public Interface IToyota Inherits ICar End Interface </code></pre> <p>And here are my classes. As you can see, when <strong>Car</strong> overrides <strong>Copy</strong> it return <strong>ICar</strong> which is what I want. But when <strong>Toyota</strong> overrides <strong>Copy</strong> it also wants to return <strong>ICar</strong> instead of <strong>IToyota</strong>. How do I write it to return <strong>IToyota</strong>?</p> <pre><code>Public MustInherit Class Base(Of T) Implements IBase(Of T) Protected MustOverride Function Copy() As T Implements IBase(Of T).Copy End Class Public Class Car Inherits Base(Of ICar) Implements ICar Protected Overrides Function Copy() As ICar Return Nothing //'TODO: Implement Copy End Function End Class Public Class Toyota Inherits Car Implements IToyota Protected Overrides Function Copy() As IToyota Implements IToyota.Copy //'I want this to return IToyota, but gives me a compile error End Function End Class </code></pre> http://stackoverflow.com/questions/1789438/c-inheritance-problem 4 C++ inheritance problem Jack Skellington 2009-11-24T11:20:20Z 2009-11-24T14:17:58Z <p>Here are my classes:</p> <blockquote> <p>ParentClass, ParentObj</p> <p>DerivedClass (inherits from ParentClass), DerivedObj (inherits from ParentObj).</p> </blockquote> <p>ParentClass has a protected member:</p> <blockquote> <p>std::vector&lt; ParentObj* ></p> </blockquote> <p>DerivedClass allocates only DerivedObj* objects to this vector.</p> <p>Problem is:</p> <p>When I use ParentClass, I want to access its vector objects with an iterator of type:</p> <blockquote> <p>std::vector&lt; ParentObj* >::const_iterator</p> </blockquote> <p>And when I use DerivedClass, I want to access its vector objects with an iterator of type:</p> <blockquote> <p>std::vector&lt; DerivedObj* >::const_iterator</p> </blockquote> <p>How can I make it work?</p> http://stackoverflow.com/questions/1788035/sharing-methods-between-two-implementations-of-a-virtual-base-class-in-c 0 Sharing methods between two implementations of a virtual base class in C++ blcArmadillo 2009-11-24T05:38:30Z 2009-11-24T06:12:47Z <p>I have a virtual base class and two classes that implement the various methods. The two classes have the same functionality for one of the methods. Is there away I can share the implementation between the two classes to eliminate redundant code? I tried making the first class a parent of the second class in addition to the virtual base class but got a bunch of errors.</p> <p><strong>EDIT</strong> - Thanks everyone for the replies. One thing I should have mentioned is that I cannot modify the virtual base class so just adding the code to the base class will not work.</p> http://stackoverflow.com/questions/1588281/why-subclass-nsobject 2 Why subclass NSObject? unknown (google) 2009-10-19T11:58:22Z 2009-11-24T06:03:08Z <p>What is the purpose/use of NSObject in Objective-C? I see classes that extend NSObject like this:</p> <pre><code>@interface Fraction : NSObject </code></pre> <p>In C++ or Java, we don't use any variables like NSObject even though we have preprocessor directives and import statements in both Objective-C and Java. </p> <p>Why do classes explicitly inherit from NSObject in Objective-C? What are the consequences of not declaring inheritance from NSObject?</p> http://stackoverflow.com/questions/1786832/how-to-instantiate-a-descendant-usercontrol 0 How to instantiate a descendant UserControl? AngryHacker 2009-11-23T23:39:24Z 2009-11-24T04:54:28Z <p>Here is the scenario. I have a bunch of UserControls that all inherit from MyBaseControl. I would like to instantiate a UserControl based on its name. For instance:</p> <pre><code>void foo(string NameOfControl) { MyBaseControl ctl = null; ctl = CreateObject(NameOfControl); // I am making stuff up here, // CreateObject does not exist } </code></pre> <p>How do i instantiate this UserControl based on its name. I could have a gigantic switch statement and that smells bad. All the UserControls, including their Base class, are in the same project and all have the same namespace.</p> http://stackoverflow.com/questions/1776641/how-do-i-apply-the-dry-principle-to-iterators-in-c-iterator-constiterator 3 How do I apply the DRY principle to iterators in C++? (iterator, const_iterator, reverse_iterator, const_reverse_iterator) exscape 2009-11-21T20:17:09Z 2009-11-23T08:15:16Z <p>OK, so I have two (completely unrelated, different project) classes using iterators now. One has <code>iterator</code> and <code>reverse_iterator</code> working as intended, and the other, current one has <code>iterator</code> and a semi-broken <code>const_iterator</code> (specifically, because const_iterator derives from iterator, the code <code>LinkedList&lt;int&gt;::iterator i = const_list.begin()</code> is valid and allows you to modify the const defined list...).<br> I intend to add all four types to this class... If I can. </p> <p>How would I proceed to minimize copy/pasting code and changing only the return type? Create a base class like <code>base_iterator</code> to inherit from? Create an <code>iterator</code> or <code>const_iterator</code> and inherit from that? Inherit from some std:: class? If any of these cases are the "best" approach, what code goes where?<br> Perhaps none of the alternatives are good? I'm quite lost here, and can't find much reference material. </p> <p>Any advice is appreciated, but please keep in mind that I'm new to the subject (both iterators and C++ in general, especially OOP). I've tried, in vain, to study the header files shipped with GCC - they're not exactly the tutorial I'm looking for.</p> http://stackoverflow.com/questions/1779974/c-templates-vs-aggregation 2 C++ Templates vs. Aggregation ajay 2009-11-22T20:57:19Z 2009-11-22T21:19:53Z <p>Consider the following piece of code:</p> <pre><code>class B { private: // some data members public: friend bool operator==(const B&amp;,const B&amp;); friend ostream&amp; operator&lt;&lt;(ostream&amp;,const B&amp;); // some other methods }; template &lt;typename T=B&gt; class A { private: // some data members vector&lt;vector&lt;T&gt; &gt; vvlist; public: // some other methods }; </code></pre> <p>My requirement is that the type T that is passed as type parameter must provide definitions for the operator== and the operator&lt;&lt; methods. I do not want to enforce any other restrictions on T.</p> <p>How can I do this?</p> <p>One way that I can think of is to Create an Abstract class say "Z" that declares these two methods.</p> <p>and then write</p> <pre><code>vector&lt;vector&lt;Z&gt; &gt; vvlist; </code></pre> <p>and NOT have class A as a template.</p> <p>Is there a better way to do this?</p> <p>Thanks! Ajay</p> http://stackoverflow.com/questions/1777800/in-c-is-it-possible-to-cast-a-listchild-to-listparent 1 In C#, is it possible to cast a List<Child> to List<Parent>? Matthew 2009-11-22T04:22:05Z 2009-11-22T17:09:11Z <p>I want to do something like this:</p> <pre><code>List&lt;Child&gt; childList = new List&lt;Child&gt;(); ... List&lt;Parent&gt; parentList = childList; </code></pre> <p>However, because parentList is a <i>List</i> of Child's ancestor, rather than a direct ancestor, I am unable to do this. Is there workaround (other than adding each element individually)?</p> http://stackoverflow.com/questions/1778819/a-question-about-generic-inheritance 1 A question about Generic inheritance JMSA 2009-11-22T14:21:24Z 2009-11-22T15:04:19Z <pre><code> public class Leaf : IComponent&lt;Leaf&gt; { //... } </code></pre> <p>Does this type of generic inheritance mechanism have any specific name?</p> <p>What is the benefit of this type of usage of Generics?</p> http://stackoverflow.com/questions/1749506/polymorphism-and-shadowing-inherited-members 1 Polymorphism and shadowing inherited members Jonas 2009-11-17T15:07:53Z 2009-11-22T11:56:57Z <p>I have a couple of small classes to represent parts in a search filter. If the searched value equals <code>NonValue</code> the filter is supposed to do nothing. This is defined in a Base Class:</p> <pre><code> Private Class BaseFilter Protected NonValue As Object Protected sQueryStringBase As String = "AND {0} {1} {2} " Public Sub CheckNonValue(ByVal QueryItem As Object) 'No Query if Item not valid If Me.NonValue.Equals(Me.QueryItem) Then Me.sQueryStringBase = String.Empty End If End Sub End Class </code></pre> <p><code>BaseFilter</code> is then extended for different types of fields:</p> <pre><code> Private Class StringFilter Inherits BaseFilter Protected Shadows NonValue As String = String.Empty End Class </code></pre> <p>When I then create a StringFilter and check for allowed value:</p> <pre><code>Dim stf As New StringFilter() stf.CheckNonValue(MyString) </code></pre> <p>I get a NullReferenceException <code>(NonValue = Nothing)</code> , when I expected the NonValue object to be String.Empty. Is this a bug in my code, or am I trying to achieve polymorphism in a wrong way? Thanks.</p> http://stackoverflow.com/questions/1304758/complicated-nhibernate-component-mapping 0 Complicated NHibernate component mapping Meigetsu 2009-08-20T08:27:06Z 2009-11-22T11:00:03Z <p>EDIT: I simplified the problem to leave only what really bothers me.</p> <p>Hello all,</p> <p>I am trying to make the following mapping.</p> <p>In my database, I have a table called "ReportRowValue" containg the following columns:</p> <ul> <li>RowNumber </li> <li>ColumnNumber </li> <li><strike>StringValue </li> <li>LongValue </li> <li>DateValue</strike> </li> <li>Value</li> </ul> <p>In my code I want to get a more usable structure by creating <strike>several</strike> two classes from this one table. I guess this should be done using components <strike>and inheritance</strike> but I did not managed to create a working mapping file. What I want in code should look like this:</p> <p>ReportRow </p> <ul> <li>RowNumber </li> <li>Values (collection of ReportValue below) </li> </ul> <p>ReportValue <strike>(being an abstract class)</strike> </p> <ul> <li>ColumnNumber </li> <li>Value</li> </ul> <p><strike>ReportValueString / ReportValueLong / ReportValueDate (each one inheriting from ReportValue)</p> <ul> <li>Value (each one having a Value property of its one type)</strike></li> </ul> <p>And that's about all!</p> <p>Does anyone can point me how to create an nhibernate mapping file/files for doing that?</p> <p>Thanks,</p> <p>Meigetsu</p> http://stackoverflow.com/questions/1774446/how-to-get-the-properties-of-a-class-using-reflection-specifying-how-many-levels 0 How to get the properties of a class using reflection (specifying how many levels of heirarchy) in C#.Net? ace 2009-11-21T03:51:24Z 2009-11-22T09:23:29Z <p>So for example:</p> <pre><code>class GrandParent { public int GrandProperty1 { get; set; } public int GrandProperty2 { get; set; } } class Parent : GrandParent { public int ParentProperty1 { get; set; } public int ParentProperty2 { get; set; } protected int ParentPropertyProtected1 { get; set; } } class Child : Parent { public int ChildProperty1 { get; set; } public int ChildProperty2 { get; set; } protected int ChildPropertyProtected1 { get; set; } } </code></pre> <p>but when i do this:</p> <pre><code>public String GetProperties() { String result = ""; Child child = new Child(); Type type = child.GetType(); PropertyInfo[] pi = type.GetProperties(); foreach (PropertyInfo prop in pi) { result += prop.Name + "\n"; } return result; } </code></pre> <p>the function returns</p> <p><code>ChildProperty1</code> <br/> <code>ChildProperty2</code> <br/> <code>ParentProperty1</code> <br/> <code>ParentProperty2</code> <br/> <code>GrandProperty1</code> <br/> <code>GrandProperty2</code></p> <p>but I just need the properties up to the Parent class</p> <p><code>ChildProperty1</code> <br/> <code>ChildProperty2</code> <br/> <code>ParentProperty1</code> <br/> <code>ParentProperty2</code></p> <p>Is there any possible way which we could specify how many levels of heirarchy could be used so the result returned would be as desired? Thanks in advance.</p> http://stackoverflow.com/questions/1776993/c-collection-of-abstract-base-classes 0 C++ collection of abstract base classes unknown (google) 2009-11-21T22:27:09Z 2009-11-21T22:48:40Z <p>hello</p> <p>how can I create STL collection of classes which implement abstract base class using the base class as collection value, without using pointers?</p> <p>is there something in Boost that allows me to implement it? The collection specifically is map.</p> <p>Thanks</p> http://stackoverflow.com/questions/1767931/c-inherited-class-initialization 0 c# inherited class initialization Ayo 2009-11-20T02:23:07Z 2009-11-21T14:38:13Z <p>so with this class i have</p> <pre><code>public class Options { public bool show { get; set; } public int lineWidth { get; set; } public bool fill { get; set; } public Color fillColour { get; set; } public string options { get; set; } public virtual void createOptions() { options += "show: " + show.ToString().ToLower(); options += ", lineWidth: " + lineWidth; options += ", fill: " + fill.ToString().ToLower(); options += ", fillColor: " + (fillColour != Color.Empty ? ColourToHex(fillColour) : "null"); } public Options(bool _show, int _lineWidth, bool _fill, Color _fillColour) { show = _show; lineWidth = _lineWidth; fill = _fill; fillColour = _fillColour; createOptions(); } } </code></pre> <p>and another class that inherits it</p> <pre><code>public class Line : Options { public static bool steps { get; set; } public override void createOptions() { options += ", lines: {"; options += " steps: " + steps.ToString().ToLower() + ","; base.createOptions(); options += "}"; } public Line(bool _show, int _lineWidth, bool _fill, Color _fillColour, bool _steps) : base(_show, _lineWidth, _fill, _fillColour) { steps = _steps; } } </code></pre> <p>When calling the object <code>Line(true, 1, true, Color.Gray, true)</code> it does the override of the inherited class function first, then sets <code>steps</code> to <code>true</code>.</p> <p>I want <code>steps</code> to be included in the override so <code>steps</code> will now be <code>true</code> instead of <code>false</code>(its default).</p> <p>If its possible please gimme some pointers and tips on how to fix this and explain to me why my setup will not allow for the override to happen after the constructor init.</p> http://stackoverflow.com/questions/1007325/unity-dependency-injection-and-inheritance 0 Unity [dependency] injection and Inheritance Ami 2009-06-17T14:15:30Z 2009-11-21T06:42:18Z <p>Hi,</p> <p>My question is as follows: I have a base controller (ASP.Net MVC controller) called ApplicationController, and I want all my controller to inherit from it. this base controller has a ILogger property, marked with a [Dependency] attribute. (yes, I know I should use constructor injection, I'm just curious about this attribute).</p> <p>I created the container, registered types, changed the default factory, everything is fine. the problem is that when I try to use my Logger property in the derived controller, it's not resolved.</p> <p>what am I doing wrong? why doesn't the container resolves the base class dependencies when creating the derived controller?</p> <p>code samples:</p> <p><hr /></p> <p>ApplicationController:</p> <pre><code>public class ApplicationController : Controller { [Dependency] protected ILogger _logger { get; set; } } </code></pre> <p>derived controller:</p> <pre><code>public class HomeController : ApplicationController { public HomeController() { } public ActionResult Index() { _logger.Log("Home controller constructor started."); ViewData["Message"] = "Welcome to ASP.NET MVC!"; return View(); } public ActionResult About() { return View(); } } </code></pre> <p>Unity controller factory:</p> <pre><code>public class UnityControllerFactory : DefaultControllerFactory { private readonly IUnityContainer _container; public UnityControllerFactory(IUnityContainer container) { _container = container; } protected override IController GetControllerInstance(Type controllerType) { return _container.Resolve(controllerType) as IController; } } </code></pre> <p>Global.asax.cs sample:</p> <pre><code>protected void Application_Start() { _container = new UnityContainer(); _container.RegisterType&lt;ILogger, Logger.Logger&gt;(); UnityControllerFactory factory = new UnityControllerFactory(_container); ControllerBuilder.Current.SetControllerFactory(factory); RegisterRoutes(RouteTable.Routes); } </code></pre> <p><hr /></p> <p>I'm quite new to Unity, so maybe I did something wrong.</p> <p>thanks, Ami.</p> http://stackoverflow.com/questions/1773367/linkto-issue-with-inherited-active-record-class 0 link_to issue with inherited Active Record class. lillq 2009-11-20T21:31:18Z 2009-11-21T00:12:59Z <p>Here are the classes as I have them set up:</p> <pre><code>class Stat &lt; ActiveRecord::Base belongs_to :stats_parent end class TotalStat &lt; Stat belongs_to :stats_parent end #The StatsParent class is just to show how I use the relation. class StatsParent &lt; ActiveRecord::Base has_one :total_stat has_many :stats end </code></pre> <p>For the Stats Controller index action:</p> <pre><code>def index @stats = Stat.all respond_to do |format| format.html # index.html.erb format.xml { render :xml =&gt; @stat } end end </code></pre> <p>In the index view for stats there is this bit of code:</p> <pre><code>&lt;% @stats.each do |stat| %&gt; ... &lt;td&gt;&lt;%= link_to 'Show', stat %&gt;&lt;/td&gt; &lt;% end %&gt; </code></pre> <p>And I get this error:</p> <pre><code>undefined method `total_stat_path' for #&lt;ActionView::Base:0x0000010324c1f8&gt; </code></pre> <p>Why cant the link_to work here? Do I need to create a separate controller to handle the <code>TotalStat</code>? </p> http://stackoverflow.com/questions/1771741/forcing-sub-classes-to-implement-a-method 1 Forcing sub classes to implement a method Thoku 2009-11-20T16:48:06Z 2009-11-20T21:00:44Z <p>Hi</p> <p>I am creating an object structure and I want all sub classes of the base to be forced to implement a function.</p> <p>The only ways I could think of doing it were:</p> <ol> <li><p>An abstract class - Would work but the base class has some useful helper functions that get used by some of the sub classes.</p></li> <li><p>An interface - If applied to just the base class then the sub classes don't have to implement the function only the base class does.</p></li> </ol> <p>Is this even possible?</p> <p>N.B. This is a .NET2 app.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1767458/modeling-optional-inheritance 2 Modeling "optional" inheritance random 2009-11-19T23:54:35Z 2009-11-20T12:02:43Z <p>I'm having trouble deciding on a way to model this type of relationship...</p> <p>All bosses can do certain things and have certain things (velocities, health, etc.) so these are part of the "main" abstract boss class.</p> <pre><code>class Boss // An abstract base class { //Stuff that all Bosses can do/have and pure virtual functions }; </code></pre> <p>Now I want to specify a few more pure virtual functions and members for bosses that can shoot. I'm wondering how I should model this? I've considered deriving a ShootingBoss Class from the Boss class, but specific bosses are classes in themselves (with Boss just being an abstract base class that they are derived from.) Thus if ShootingBoss is derived from Boss, and a specific boss derives from ShootingBoss, that boss won't be able to access the protected data in the Boss class.</p> <pre><code>Boss(ABC) -&gt; ShootingBoss(ABC) -&gt; SomeSpecificBoss(can't access protected data from Boss?) </code></pre> <p>Basically, I'm wondering what the recommended way to model this is. Any help is appreciated. If more information is needed, I'd be happy to offer.</p> http://stackoverflow.com/questions/1769463/how-to-do-the-clean-up 1 How-to do the clean up ? unknown (yahoo) 2009-11-20T09:55:48Z 2009-11-20T10:00:56Z <p>I have this code.</p> <p>A base class that create a new instance of the context.</p> <pre><code>public class Base { private Entities context; public Base() { context = new Entities(); } } </code></pre> <p>And than the classes that inherit from this class.</p> <pre><code>public class SomeService : Base { public Gallery Get(int id) { return context.GallerySet.FirstOrDefault(g =&gt; g.id == id); } } </code></pre> <p>The question is,how to take care of disposing the context object ? I was thinking about a destructor in the base clas, where I would just call the dispose method of the context object.</p> <pre><code>~Base() { context.Dispose(); } </code></pre> <p>Would be this enough ? Or is there any other way to take care of the context object ?</p>