The derived-class tag has no wiki summary.
0
votes
2answers
52 views
Bypass one of the methods of abstract class in derived class without making derived class an abstract class [closed]
I am deriving a class from base abstract class. My abstract class has four abstract methods.
I don't want to override all methods in derived class. How should I do that, without declaring the derived ...
0
votes
1answer
17 views
How to derive from a Qt MainWindow class?
I have a Qt 4 base class that creates the main application dialog:
class MainWindow : public QMainWindow {
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
};
...
0
votes
4answers
58 views
Class or Enum structure for control types and codes
I would like to implement a class with control codes for the peers of my socket communication. I tried it with enums and derived classes but my tries doesn't work.
I would like to have a Type which ...
2
votes
3answers
57 views
Boost shared_ptr passing a derived class
So I have something like so
class baseclass {
....
}
class derived : public baseclass {
...
}
void func(boost::shared_ptr<baseclass>& a){
//stuff
}
boost::shared_ptr<derived> foo;
...
2
votes
3answers
79 views
Why we do create object instance from Interface instead of Class?
I have seen many times an Interface instance generated from a class.Why does use an Interface in this wise?An Interface instance created only itself with the help of the derived class and we can ...
0
votes
1answer
35 views
base class with member needed to be specialized in derived class
I have a class which manages method pointers:
template<class C>
class Prioritizer {
public:
typedef int (C::*FNMETHOD) ( );
typedef std::map<unsigned int, std::vector<FNMETHOD> ...
0
votes
1answer
47 views
Checking a data member of a derived class
My question is more of a conceptual/learning one that applies in this specific instance. I'm doing an assignment, and I have a class called sensor, and a derived class called digitalSensor. One of ...
1
vote
1answer
40 views
Universally create Derived class from Base in python
Found some questions on SO but still have no answer... There is a data class
class Proxy(object):
def __init__(self, ip, port):
self.ip = ip
self.port = port
There is a getter ...
1
vote
2answers
59 views
Implementing a constructor for a derived class in a .cpp?
My question is very beginner, and yes I have looked it up extensively, but when I do the things I've found online Xcode gives me errors.
Basically, I'm just curious how to implement a constructor for ...
2
votes
1answer
79 views
How to correctly write an assignment operator for a derived class
Answers to other questions say this is how to write assignment for a derived class:
class D : public B
{
public:
D& operator=(const D& other)
{
B::operator=(other);
// ...
0
votes
2answers
55 views
How can I get private information from a class pointed to by a private pointer inside another class?
I have a class, Player, with member variable Creature *character which will point to Elf : public Creature derived class.
I want to be able to declare a Player object and then have one of its members ...
0
votes
2answers
52 views
How to define a custom Rectangle class driven from the Rectangle class?
I have already coded a custom made RichTextBox class in WPF. but I need to have a tiny Rectangle on the top-left corner of this RichTextBox, in order that I can use it as a dragging handle whenever I ...
3
votes
3answers
109 views
Unable to cast Base class (data contract) to derived class
[DataContract]
public class SearchCriteria
{
[DataMember]
public string CountryID { get; set; }
}
[DataContract]
public class CitySearchCriteria: SearchCriteria
{
[DataMember]
...
0
votes
3answers
12 views
Explantation about inheritance
I have two classes, while B derives A.
I created a pointer to A, is called: a2. please take a look in my main function.
What does this line do?
a2 = new B();
Why when I delete a2, only the ...
0
votes
2answers
61 views
Get Caller derived-class when calling a base-class static method
I was wondering if it's possible (even via reflection et similia) to get the caller derived-class inside of a called base-class static method.
For example, I've a base-class with a static method ...
0
votes
0answers
66 views
Segmentation fault in CTOR of wxThread derived class
I'm trying to implement a simple thread class that extends wxThread class:
mythread.h:
class MyThread:
public wxThread
{
public:
MyThread();
virtual ~MyThread() {}
virtual void* Entry();
...
1
vote
1answer
62 views
compilation error with std::priority_queue derived class using std::shared_ptr
I derived from std::priority_queue to implement a few specialized methods. One of these
methods somekind of a fixed queue when I add an element and the queue is full, the smallest element is dropped ...
0
votes
1answer
45 views
Class derived from std::priority_queue does'nt use comparator predicate / template parameters
I am not very familiar with deriving from templates, see the following:
class BCQueue_;
template<typename T,
typename Sequence = std::vector<T>,
typename Compare = ...
2
votes
4answers
60 views
How to return derivered type from method declared in base type
I've a method in a base class that should return self instance of type as derivered type. For example:
class A
{
public string X { get; set; }
public A SetX(string x)
{
this.X = x;
...
1
vote
1answer
38 views
Handling a class that contains derivations of the same class which are required to behave differently
I have a Command class that, when executed, performs a command on a IScriptable object
[
XmlInclude(typeof(CommandPositionSettings)),
]
public abstract class CommandSettings
{
public ...
1
vote
2answers
123 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 ...
0
votes
1answer
76 views
ActionResult cast parameter base class to derived class
I've written a base class and some classes which derive from it.
I want to use these classes in one ActionResult, but if I'm trying to cast PSBase to PS1 I'm getting a System.InvalidCastException ...
0
votes
1answer
30 views
Override property type
Referring to the answer provided to my question on dba.stackexchange, I couldn't get how to override Agents property to get OrigineAgents. How can I do override the property Agents in my case ?
0
votes
1answer
89 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 ...
1
vote
0answers
39 views
Designing a logger to dump user-defined structures
I have some user defined structs (which can't be changed) that i want to store in a map
in my Logger class.
i.e.
class Logger {
private:
map<string, vector<myType*> > myLog;
}
Of ...
4
votes
1answer
224 views
Passing a derived class to a web service method, as the base class
I have a C# class imported from a web service. Due to debugging issues and arrays, I needed this class to have a ToString() override or DebuggerDisplayAttribute, and the only way I found was adding ...
0
votes
0answers
75 views
C++ Object Slicing smart pointers
Hi I am using the following code to read an Image class which is derived from cv::Mat. Then I want to pass the object into a function where I pass it directly into a vector of smart pointers to ...
3
votes
3answers
86 views
What is the best way to handle a collection of derived objects in a derived class
Imagine I have a class 'BaseA' that contains a collection of items 'ItemA'.
Now I want to extend 'BaseA' to add extra capabilities, so I derive 'DerivedA' from 'BaseA'.
One characteristic of ...
6
votes
1answer
113 views
Cast lambda expression to derived type
I need a little piece of magic. I believe what I am trying to do makes sense, but if it I've not seen a problem with the plan the reasons why would be just as welcome.
I have an expression
...
2
votes
3answers
76 views
Limitations on pointers to various types within a class family?
Suppose I have 4 classes: A,B,C, and D.
A is the base class.
B is derived from A.
C is derived from A.
D is derived from B.
I have vectors of each type of object.
I create a 5th class that is ...
2
votes
2answers
89 views
How to handle derived classes at UI without switch statements when using MVC/MCP?
I'm using a MVC/MCP pattern for my C# (WinForms) application.
In the business logic I have derived classes like
abstract public class Item
{
abstract double CalculatePrice();
...
}
public ...
1
vote
1answer
75 views
c++ pointer vector<base_class*> put derived class but sliced print
I'm studying for pointer and inheritance of C++.\
I made pointer of vector Employee class which has name and salary in it.
Also, it has print function which printout name and salary.
I made it ...
0
votes
2answers
258 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 ...
0
votes
2answers
146 views
C++: How to call a base class constructor with more than one argument?
class BaseClass {
public:
BaseClass(const byte *buff, long size) {
// Some Computation
}
};
class DerivedClass: public BaseClass {
public:
std::vector<byte> filebuff;
long ...
9
votes
2answers
206 views
Python print isn't using __repr__, __unicode__ or __str__ for unicode subclass?
Python print isn't using __repr__, __unicode__ or __str__ for my unicode subclass when printing. Any clues as to what I am doing wrong?
Here is my code:
Using Python 2.5.2 (r252:60911, Oct 13 2009, ...
1
vote
1answer
80 views
Derive XAML UserControl
I'm new to WPF and I have a question:
In my projects I usually use many usercontrols, that are derived from my 'base' usercontrol, that have some functions to inherit to all my usercontrols.
With ...
-5
votes
1answer
219 views
Derived classes C++ BankAccount program [closed]
I'm trying to make a BankAccount class with derived a class CheckingAccount. The problem I'm having are as follows:
CheckingAccount should contain a data member to keep track of the number of ...
0
votes
2answers
55 views
Calling one specific overriden method in all derived classes
Consider the following code:
// ======== Abstract class ========
public abstract class Creatures {
public abstract void loseEnergy();
public void execute()
{
loseEnergy();
...
9
votes
1answer
122 views
Effects of a const base class [duplicate]
What is the actual effect of the following construct:
class Base { /* ... */ };
template<class T>
class Derived : public T { /* ... */ };
int main() {
Derived<const Base> d;
// ...
1
vote
1answer
47 views
Casting down the hierarchy a concrete object
I am looking at a piece of code where there's a c-style cast that puzzles me.
I am fairly familiar with casting, but this one I really can't grasp. So, here it is: I have two classes, say Base and ...
0
votes
0answers
70 views
Deriving specialized template class
I have a problem with the derivation of template classes.
The following code-snippet will show my problem:
class object {
}
template <class T>
class container {
public:
cotainer(void) {
...
1
vote
1answer
155 views
Is it possible to pass an attribute argument from a derived class to its base class?
Is it possible to pass an attribute argument from a derived class to its base class?
Essentially, I'm trying set a property's attribute's argument from the derived class.
How it could be done in ...
1
vote
1answer
213 views
Simple-XML - how to serialize derived classes in a collection?
I want to serialize a object hierarchy including a list of objects which derive from the base class 'Thing'. This works fine, including deserialization - but XML-Simple insists in writing an attribute ...
0
votes
3answers
39 views
Calling virtual method of a derived class causes segfaults
I'm trying to make a chess program, but I want to be able to implement different AIs in it. Thus I made a abstract AIgeneric class and the derived class AIrandom off of AIgeneric. Then in my chessAI ...
-7
votes
5answers
403 views
c# get field (property) values of derived class in base constractor
I have 2 classes:
public class Class1
{
private string Name1;
public Class1()
{
//How to get Name2 of the derived class?
}
}
public class Class2 : Class1
{
private string ...
0
votes
1answer
83 views
How to create objects for this issue?
First of all I would like to say I am beginner and I did some research on this issue
I created five classes superbase, base and 3 derived:
class superbase
{
QList<base*> listofbase; ...
0
votes
2answers
115 views
Virtual method called from derived instead of base
Can someone explain to me why is the overridden method being called when I cast the class into the base one:
class Base
{
public virtual void VirtualMethod()
{
...
1
vote
4answers
200 views
Using Super in a Derived Class Constructor When Base Class Requires Exceptions to be Caught
I'm trying to derive a class B to a new class C in Java. The base class constructor requires that unreported exceptions must be thrown or caught. But if I try to put super(..) inside a try/catch ...
0
votes
1answer
189 views
Access protected data members of the base class from the derived class
I have a base class and the derived class. I need to access the protected member of the base class in the derived class. However, Eclipse does not allow me to access the data member as if it were a ...
0
votes
2answers
112 views
Instancing a Base Class - Win32 Dialog Classes
I have three classes...Base, Derived 1, and Derived 2. The base class holds a static LONG( this * ) that it uses in a static function to handle window messages. The problem that I'm having is that ...



