1
vote
2answers
72 views
[C++] Using a virtually inherited function non-virtually?
Hello!
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 lo …
1
vote
1answer
36 views
VB.net Overridable property not same as c# Virtual property?
Well its simple here you have my vb.net code:
Public Class Class1
Public Overridable ReadOnly Property Name() As String
Get
Return Nothing
End Get
…
0
votes
1answer
35 views
inheritence how to return the subclass object?
Base Class B
|
|
----
| |
| |
D1 D2
public static object GetDerivedClass(Type t1, MyProcess p1)
{
DerivedClass D1 = null;
DerivedClass D …
0
votes
1answer
99 views
C++ overloaded function issue
Why does the compiler not find the base class function signature? Changing foo( a1 ) to B::foo( a1 ) works.
Code:
class A1 ;
class A2 ;
class B
{
public:
void foo( A1* a1 ) { …
0
votes
5answers
126 views
virtual derived class of a non-virtual base class
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 v …
0
votes
6answers
144 views
Special interaction between derived objects (i.e. mutiple dispatch)
So, I have a list of base class pointers:
list<Base*> stuff;
Then, at some point one of the objects will look through all other objects.
Base * obj = ...; // A pointer fr …
0
votes
3answers
31 views
can a base class tell what item is inheriting it
I have a base clase "AsyncHandlerBase"
public class CameraAlertsQuery : AsyncHandlerBase
the base class is inherited by multiple pages.
is there any way in the base class to ex …
0
votes
1answer
31 views
Any better way to tailor a library than inheritance?
Most likely an OO concept question/situation:
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 …
0
votes
2answers
27 views
Django Multi-Table Inheritance VS Specifying Explicit OneToOne Relationship in Models
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 distracti …
4
votes
5answers
216 views
C++ inheritance problem
Here are my classes:
ParentClass, ParentObj
DerivedClass (inherits from ParentClass), DerivedObj (inherits from ParentObj).
ParentClass has a protected member:
std:: …
2
votes
4answers
115 views
C#: interface inheritance getters/setters
I have a set of interfaces which are used in close conjunction with particular mutable object.
Many users of the object only need the ability to read values from the object, and t …
0
votes
4answers
61 views
Sharing methods between two implementations of a virtual base class in C++
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 im …
1
vote
4answers
47 views
How to get a base class method return type to be the subclass type?
I have a copy function that I'd like to override in subclasses to return the type of the subclass. Here are my interfaces:
Public Interface IBase(Of T)
Function Copy() As T
En …
0
votes
2answers
32 views
How to instantiate a descendant UserControl?
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:
void foo(st …
0
votes
0answers
11 views
Linq Entity Inheritance makes BIG SQL Sentences
We are developing an application with a base entity with more than 10 childs (which inherited from it).
When we make any request with Linq to the base entity we get a SQL statemen …
