In Object Oriented Programming, a base class is one from which other classes inherit. For example, a child-class `Male` and another child-class `Female` may both inherit from the base-class `Human`.
3
votes
1answer
81 views
Inconsistent accessibility: base class is less accessible than child class
I am reading book "C# 4.0 in a nutshell" by Joseph Albabari and Ben Albabari. From there I find a topic restrictions on access modifiers. Page 91, Topic "Restrictions on Access Modifiers".
Quoting ...
0
votes
1answer
59 views
how could I gain a class address from it's base in multiple-inheritance?
I used a third-part library in my company. In it, Some classes I need is defined like this:
class A
{};
class B : public A
{};
class C : public A
{};
class Foo
: public B
, public C
, public A
...
-2
votes
2answers
133 views
base.Method() with multiple levels of inheritance not being called?
I've searched and not been able to find any solution to my problem. My scenario is very simple:
public class A
{
public virtual void MethodOne()
{
Console.log( "A" );
}
}
public ...
1
vote
1answer
40 views
How to avoid error “Constructor on type 'MyType' not found” when inheriting a base class
I have a Visual Studio 2010 Windows Forms app which includes a Form base class that other classes will inherit. The base class' constructor takes a parameter that the child classes will pass to the ...
-4
votes
1answer
56 views
My Base Class is Changing every time in my code. How to make it Stable , 'that i should not update my code every time'? [closed]
I have below question been asked in interview, please answer :
There is one Base class T1 , now my child class Generator inherit it.
Class generator extends T1{
}
Later base class has new ...
0
votes
0answers
18 views
Resharper BaseTestClass in other project/assembly
I am unit testing and have a base testclass that include a testmethode that should be inherited by the implementing testclass.
if the base test class is in the same project as the inheriting class ...
0
votes
2answers
63 views
C# OOP Abstract base class and inheritted properties
apologize me if this is noob question.
I have the following abstract base class:
public abstract class MockDataBase
{
public virtual string ExternalId { get; set; }
And i have the derived ...
1
vote
2answers
81 views
How do I call a derived class method from the base class?
I have read several similar questions about this but none seem to solve the problem I am facing. The typical answer is to cast as the derived class but I cannot since I do not know the derived class ...
1
vote
3answers
109 views
best way of accessing method on derived class C++
I have some different objects all of type Zoo, which have a member variable Collection = vector<Animal>. I have one instance of zoo where all the elements are Animals, one where all the ...
0
votes
1answer
73 views
C++ Calling a DerivedClass function not inherited from a BaseClass pointer
Hello and thanks in advanced.
Here is my issue. I have these classes:
-class Date
-class Contract
-class Employee
-class Node
-class List
All of the classes derive from this class BaseObject. It ...
0
votes
3answers
33 views
no matching function error in the case of relation between base class and extend class
I got two classes: TJob and Reload_Job. Reload_Job extends from TJob:
class reload_job: public TJob
I got a function:
void run_all_threads(std::vector<TJob*> &jobs){...}
and a call:
...
2
votes
2answers
81 views
asp.net webforms: BaseClass inheritance / ContentPage controls not accessible
I am working on a multilingual application.
For this reason, I created custom BasePage class, which contains overriden InitializeCulture method.
BasePage class inherits System.Web.UI.Page class and ...
-4
votes
2answers
57 views
base class extended object implamentation
Bit of a noobie question but hey ho.
Example:
BaseClass bc = new ExtendedClass(); //Assume ExtendedClass inherits from BaseClass
((BaseClass)bc).ExtendedMethod();
bc.ExtendedMethod();
...
0
votes
3answers
54 views
Calling a base class method from a derived class method in Python
I have a class A and I have inherited a class B from class A.
I have two methods methodX & methodY in ClassA. This methodY will be calling methodX in classA.
Now I have a methodZ in ClassB.
The ...
0
votes
2answers
179 views
c++ no matching function for call to base-class method from derived-class
I got a little confused as gcc dropped an error with the message
error: no matching function for call to ...
note: candidates are ...
So I did a wrong function call as it seems to be. Here is what ...
-1
votes
1answer
80 views
pointer or variable? [closed]
Recently, I am learning MFC, following codes puzzled me a lot:
class CRect : public tagRECT
{
public:
// Constructors
// uninitialized rectangle
CRect();
// from left, top, right, and bottom
...
0
votes
2answers
89 views
How to avoid the fragile base class in Java
I am studying the fragile base class problem and found the following paper interesting: https://www.research.ibm.com/haifa/info/ple/papers/class.pdf
In this paper it is argued that it would be great ...
1
vote
1answer
45 views
C# Base or Template Class?
Ok so I am making a game using XNA, I would like all of the enemies to extend from one base class called "baseEnemy.cs". For example, I would like a zombie to have a class called "zombie.cs" but make ...
0
votes
2answers
119 views
template operator overload base class
I have a base class with many child classes. How would I implement a template operator over loader in the base class to work for all the inheriting classes? I tried to make one with the + operator but ...
1
vote
4answers
101 views
Issue with inheritance and virtual destructors in C++
So I have two classes, one is abstract, and one is not.
The abstract class is Iterator, and the concrete one is LinkedListIterator. The code for both is at the bottom of the post.
The issue I'm ...
2
votes
1answer
135 views
Casting List of derived class to List of base class still returning objects of derived class
I have the following code:
public class BaseClass
{
public string A { get; set; }
}
public class DerivedClass : BaseClass
{
public string B { get; set; }
}
List<DerivedClass> ...
0
votes
1answer
65 views
DDD Events and abstract base classes
I am currently working on implementing multiple events which share common properties and are basically the same: Templates. Our event provider applies several events like SomeTemplateAddedEvent and ...
2
votes
1answer
42 views
Error from templating a subclass from a templated base class
I'm trying to template a subclass, which will be specified later, from a templated base class. But got error
test.C: In constructor ‘myDeri<U>::myDeri()’:
test.C:30:16: warning: extended ...
1
vote
4answers
99 views
What exactly is IDisposable needed for? [duplicate]
Possible Duplicate:
Proper use of the IDisposable interface
I tried to find an actual answer to my question from books, internet and on stackoverflow, but nothing has helped me so far, so ...
2
votes
2answers
104 views
C# Object Inheritance
I am trying to create a base class in c# that I can extend out to sub classes.
For example:
public class ObjectsInTheSky
{
public string Size, Shape;
public float Mass;
public int ...
1
vote
1answer
75 views
Calling an aliased-declared base class constructor in a different namespace
I am trying to understand some details of alias-declared classes through C++11's using and how/why this affects a base class constructor call.
Example Code
#include <iostream>
namespace N {
...
0
votes
0answers
120 views
Filtering Context.GetTable<T> with BaseClass Virtual Property
We have a pretty extensive LINQ-to-SQL mapping with a back-end database containing around 150 tables. Almost all of the tables have a common property called CompanyCode which functions as a sort of ...
2
votes
2answers
168 views
Can't call method of derived class - compiler identifies object instance as base class
I am getting a compiler error when calling a method defined in a derived class. The compiler seems to think that the object I am referring to is of a base class type:
weapon = ...
0
votes
3answers
69 views
Calling a base class method from a different base class that the child inherits
class A {
void methodToCall() {};
}
class B {
B() {
subscribeToEvent();
}
void eventHandler(Event* E) {
call A::methodToCall()
}
}
class C : public A, public B{
}
This may seem like a ...
0
votes
0answers
103 views
Create a base class for xmlpullparser utility in android
i have some problem with parsing XML using xmlpullparser API for android
Problem: i have a lot of duplication in android classes like Activity or some business class for xml parser but its a same!!! ...
0
votes
3answers
121 views
An elegant way to pass derived type to base member template function?
I have a class called 'ValueChecker'
which has the following member function:
template<typename T>
bool ValueChecker::checkMe( std::ostringstream &oss, T &me) {
std::cout << ...
0
votes
1answer
82 views
Implementing convenience methods that use Controller protected methods?
Is there any way I can implement a convenience method that uses a Controller's protected method(s) without using a base controller, which is recommended against here? For example, I want to return an ...
0
votes
1answer
42 views
Where can I find the latest open source Base Classes used in Mac OS X like NSMutableDictionary, NSString, NS****,
do you know some links where I can browse the source codes of base classes used in Mac OS X? I already have this link which I found very useful but based from what I encountered lately (when using ...
0
votes
1answer
196 views
What is the use of virtual base class in multilevel inheritance?
This was an exam question.
Write a program demonstrating the use of virtual base classes in
multilevel inheritance.
I cannot think of any scenario in which a virtual base class would actually ...
2
votes
1answer
182 views
Derived Class Constructor Calls
If I have a base class:
class Base{
...
};
and a derived class
class Derived : public Base{
...
}
does this derived class always call the default constructor of the base class? i.e. the ...
0
votes
3answers
55 views
Base Class contructor error [duplicate]
Possible Duplicate:
What is this weird colon-member syntax in the constructor?
I have the following base class and derived class;
class P {
int n;
public:
P( int id );
virtual int ...
1
vote
1answer
131 views
Base class pointer pointing to derived class, outside of a scope
If I create a base class pointer array, create an derived class object in a scope and pass the reference to the array and call a virtual function of the derived class in the scope correctly but ...
3
votes
3answers
484 views
Will the base class constructor be automatically called?
class Person
{
int age;
public Person()
{
age = 1;
}
}
class Customer : Person
{
public Customer()
{
age += 1;
}
}
Customer customer = new Customer();
...
2
votes
1answer
97 views
Python class members scanning - Why __bases__ recursive scan is required in get members?
I found the following function, but I have no idea why additional __bases__ scan is required:
def getMembersWithBases(classType):
members = set(dir(classType))
# recursive bases scan
for ...
1
vote
2answers
100 views
override List<baseClass> with List<derivedClass>
I have base classes like this:
public class Scene
{
public IList<SceneModel> Models {get; set;}
}
public class SceneModel { }
and derived classes like this:
public class WorldScene : ...
1
vote
2answers
227 views
Calling base class constructor in c#
I have the following classes:
public abstract class BusinessRule
{
public string PropertyName { get; set; }
public string ErrorMessage { get; set; }
public BusinessRule(string ...
1
vote
1answer
134 views
How to override parameter defined in interface method with richer type?
I have these:
public class TennisPlayer
{
}
public class RogerFederer : TennisPlayer
{
}
public class RafaelNadal : TennisPlayer
{
}
And then I have some classes with methods, like these:
...
1
vote
1answer
116 views
Android : To shift the common code of all activities to a base class.. the application crashes
I have the following BaseClass:
public class BaseClass extends Activity implements MusicUtils.Defs,
View.OnTouchListener, View.OnLongClickListener {
private static final int USE_AS_RINGTONE = ...
0
votes
4answers
54 views
Child use of interface
I have a user control that will handle images on a form. But depending on what the source is (web cam or ID scan or other video source) the user control is different.
But they share some common ...
-3
votes
2answers
260 views
Accessing Derived class members in base class method
I have a peculiar requirement and not been able to find a solution.
class Base
{
public:
void func()
{
//access the member say 'var' of derived class
}
}
It is mandatory in our ...
0
votes
2answers
81 views
declaring a derived class in an IF for use outside
I have the following code where I want to declare an object inside an IF statement. I understand that just declaring it inside an IF means that it's outside the scope of the rest of the program. So I ...
3
votes
5answers
396 views
C# “Rename” Property in Derived Class
When you read this you'll be awfully tempted to give advice like "this is a bad idea for the following reason..."
Bear with me. I know there are other ways to approach this. This question should be ...
-4
votes
2answers
121 views
Performance using standard C# /.net classes and methods
i would like to understand if you please help with your opinion
on this code below which is the simplest example to the performance issue using .net
built-in methods.. and they're highly recommended ...
0
votes
1answer
79 views
Generic class of a certain base class and also inherit base class
I'm trying to create a simple DataContainer class,
public interface DataObject
{
string Name { get; set; }
uint ID { get; set; }
}
[Serializable()]
public class DataContainer<T> where ...
-1
votes
5answers
115 views
I need to make a vector containing objects of a base class and a derived class and know which element is which
I am working on a game that has monsters and dragons. Dragons can do everything monsters can do except they can also breathe fire.
I have made a class of type 'monster' and a class that inherits ...

