The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
50 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
28 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
61 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
10 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
42 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
61 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
50 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
36 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
50 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
37 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
79 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
58 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
28 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
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 ...
1
vote
0answers
36 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
194 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
66 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
79 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
90 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
68 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
79 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
59 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
175 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
118 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 ...
7
votes
2answers
124 views

Python print isn't using __repr__, __unicode__ or __str__ for uncode 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
61 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
141 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
38 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
114 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
42 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
59 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
117 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
160 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
36 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
240 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
80 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
103 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
133 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
143 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
103 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 ...
2
votes
1answer
71 views

How to pass various derived classes of the same interface within a generic List as a parameter to the function?

How to pass a List with different inherited classes to the function takes the parent interface List? The compiler generates an error. public interface ControlPoint { } public ...
1
vote
3answers
60 views

Is it undefined behavior to cast from base class to derived?

I've encountered myself in a problem where casting to the derived class would solve the problem. I've found an answer on S.O that says it can lead to UB, testing it, it both compiled and worked ...
0
votes
1answer
40 views

Repetitive dependencies for derived classes

I have a base class: class B { } It has lots of dependencies: public B(IFoo foo, IBar bar, IFooBar fooBar, IAlice alice, IBob bob) { } I have lots of derived classes that look like: public ...
2
votes
1answer
129 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
34 views

Deriving from a CGAL class compatible with CGAL::assign

I want to derive from the CGAL::Parabola_segment_2 class. Because I would like to access two protected data members which can not be accessible through public member functions. typedef ...
2
votes
5answers
128 views

is it bad programming practice to place abstract classes inside the same package containing their derived classes?

Assuming that A, B, C derive from AbstractBaseClass and they are all part of the same java project, are package structures of the form... package com.whatever.### AbstractBaseClass.java package ...
1
vote
1answer
62 views

Can a class initialize its non-immediate base classes in its member initialization list?

The following code is excerpted from Apache C++ Standard Library User's Guide class DerivedOutputStream : public std::ostream { public: DerivedOutputStream(): std::ios(0), ...
-2
votes
2answers
77 views

method overriding and method hiding [duplicate]

Possible Duplicate: C#: new versus override class BaseAppXmlLogReaders { public virtual void WriteLog() { } public void Add() { } } class ...
-1
votes
2answers
94 views

struct declared in abstract class and initialiced in derived class not visible when instanced

I've been looking for this question but hadn't have no luck, I hope it isn't repeated. I have one abstract class. public abstract class IFDB { public struct Estructura_TablaCuentasBancarias ...
5
votes
2answers
165 views

std::bind()-ing a base protected member function from a derived class's member function

I want to bind() to my base class's version of a function from the derived class. The function is marked protected in the base. When I do so, the code compiles happily in Clang (Apple LLVM Compiler ...

1 2 3 4 5 7