Tagged Questions
The derived-class tag has no wiki summary.
58
votes
2answers
2k views
How to dynamically create a derived type in the Python C-API
Assume we have the type Noddy as defined in the tutorial on writing C extension modules for Python. Now we want to create a derived type, overwriting only the __new__() method of Noddy.
Currently I ...
11
votes
4answers
3k views
Why doesn't a derived template class have access to a base template class' identifiers?
Consider:
template <typename T>
class Base
{
public:
static const bool ZEROFILL = true;
static const bool NO_ZEROFILL = false;
}
template <typename T>
class Derived : ...
9
votes
10answers
463 views
When should a virtual method be pure?
I have found some code that I am working with, and was wondering what the best design implementation is.
If a base class defines a method as virtual, but implements a empty body as well, thus not ...
8
votes
5answers
87 views
How to detect template parameters of base classes at compile time (for errors)?
I've been using the Curiously recurring template pattern The general code looks like this:
template <typename T> void genericFunction(T &);
template <typename T> struct Functionality ...
8
votes
2answers
165 views
Simpler “Preventing derived classes” in C++
Going under the assumption that there is a legitimate reason for preventing derivation from some class, Bjarne gives a solution here for the answer to "Can I stop people deriving from my class?"
...
8
votes
3answers
401 views
C++ member-function chaining return types and derived classes
Given this contrived example:
struct point_2d {
point_2d& x( int n ) {
x_ = n;
return *this;
}
point_2d& y( int n ) {
y_ = n;
return *this;
}
int x_, y_;
};
...
8
votes
5answers
377 views
Why is 'virtual' optional for overridden methods in derived classes?
When a method is declared as virtual in a class, its overrides in derived classes are automatically considered virtual as well, and the C++ language makes this keyword virtual optional in this case:
...
8
votes
2answers
2k views
Deriving Class from Generic T
I have a parameterized hibernate dao that performs basic crud operations, and when parameterized is used as a delegate to fulfil basic crud operations for a given dao.
public class HibernateDao ...
5
votes
2answers
173 views
create instance of unknown derived class in C++
let's say I have a pointer to some base class and I want to create a new instance of this object's derived class. How can I do this?
class Base
{
// virtual
};
class Derived : Base
{
// ...
...
5
votes
3answers
255 views
In C# 4.0, is it possible to derive a class from a generic type parameter?
I've been trying this, but I can't seem to figure this out. I want to do this...
public abstract class SingletonType<T,U> : U
where T : class, new()
where U : class, new() // Tried it ...
5
votes
6answers
920 views
5
votes
7answers
511 views
How to force a derived class to include certain properties with default value
I have a class structure for a role playing game which looks like this...
public abstract class Item
{
public abstract string Name { get; set; }
}
public abstract class Armor : Item
{
public ...
5
votes
2answers
600 views
c++ template casting with derived classes
#include <vector>
struct A {int a;};
struct B : public A {char b;};
int main()
{
B b;
typedef std::pair<A*, A*> MyPair;
std::vector<MyPair> v;
...
5
votes
6answers
8k views
C#: Determine derived object type from a base class static method
In a C# program, I have an abstract base class with a static "Create" method. The Create method is used to create an instance of the class and store it locally for later use. Since the base class is ...
4
votes
4answers
51 views
Writing polymorphic class data to a file?
So I have these classes. There's one base class, but it has/will have lots and lots of derivatives, and those derivative classes will be able to have derivatives as well. I'd like to be able to have ...
4
votes
4answers
67 views
How could an instance of the base class hold an instance of the derived class?
I have been a .Net coder (can not say I am a programmer) for 2 years. There is one question that I can not understand for years, that is how could an instance of the base class hold an instance of the ...
4
votes
5answers
540 views
C# Derived and base class, can I set the base explicitly?
public class SuperCar: Car
{
public bool SuperWheels { get {return true; } }
}
public class Car
{
public bool HasSteeringWheel { get {return true;} }
}
How can I set the base class for ...
4
votes
3answers
855 views
How do I use an XmlSerializer to deserialize an object that might be of a base or derived class without knowing the type beforehand?
In C#, how do I use an XmlSerializer to deserialize an object that might be of a base class, or of any of several derived classes without knowing the type beforehand?
All of my derived classes add ...
4
votes
3answers
745 views
Why does my C++ subclass need an explicit constructor?
I have a base class that declares and defines a constructor, but for some reason my publicly derived class is not seeing that constructor, and I therefore have to explicitly declare a forwarding ...
4
votes
6answers
156 views
Using inheritance in constructor (publix X () : y)
I have just seen following code but I do not understand the derivation of base class right in the constructor declaration. What is this and is this possible with ordinal methods?
public ...
3
votes
3answers
71 views
specification of function templates
I would like to create a function template where the class T is limited to only derived classes of a special base class T_base. What is the efficient way to accomplish this? Thanks for your help!
3
votes
2answers
78 views
using overloaded function of the base class
I try to do something like
class base {
public:
virtual double operator() (double val) = 0;
virtual double operator() (double prev, double val) {
return prev + operator()(val);
}
...
3
votes
3answers
68 views
How to make derived class function be executed?
We have a base class: Filter. DistrFilter and ReportFilter inherit from Filter.
In another class, FilterService.cs, we have two functions that accept these three class types. FilterService operates ...
3
votes
5answers
99 views
Recasting to Derived Type
I have a problem that I'm not sure how to approach, and I'm hoping the people here will have some good tips.
I am parsing text files, which contain several logs (one log per line). The format is ...
3
votes
2answers
219 views
Accessing Values in a Class Similar to boost::any
I'm making a simple boost::any-like class for educational purposes, but I can't figure out how to access the stored value. I can set the value perfectly, but when I try to access any member in the ...
3
votes
1answer
628 views
C++ calling template functions of Base class
Below are two cases.
Case 1) Base->BaseIndirect->DerivedIndirect
Case 2) Base->Derived
In Case 2), I am able to call a template function of Base class using 3 notations.
In Case 1), I am able to ...
3
votes
5answers
233 views
Is there no way to upcast into an abstract class and not modify it each time a class is derived from it?
#include<iostream>
using namespace std;
class Abs
{
public:
virtual void hi()=0;
};
class B:public Abs
{
public:
void hi() {cout<<"B Hi"<<endl;}
...
3
votes
1answer
196 views
Deep copy of a derived python object
I have an object in python that is derived from QtGui.QGraphicsPixmapItem with a few basic attributes and methods. After calling deepcopy on a reference to this object, I get an error saying that ...
3
votes
1answer
198 views
Using declaration (Derived class)
struct B1{
int d;
void fb(){};
};
struct B2 : B1{
using B1::d;
using B1::fb;
int d; // why this gives error?
void fb(){} // and this does not?
};
int main(){}
...
3
votes
4answers
894 views
Cast base class to derived class python (or more pythonic way of extending classes)
I need to extend the Networkx python package and add a few methods to the Graph class for my particular need
The way I thought about doing this is simplying deriving a new class say NewGraph, and ...
3
votes
7answers
262 views
C# derived classes, overload resolution
Ok, I have an some different objects that are derived from a base class and I've put a bunch of them in a list. I want to loop through the list and push each to a method. I have separate methods ...
3
votes
2answers
952 views
C++ Boost serialization Serializing templated derived classes
i would like to serialize a class with an attribute as a list of pointers on a generic class
This is the parent class from which the generic class derives :
class Base{
public :
...
3
votes
3answers
188 views
Calling a function from a derived template class
My base class:
//Element.h
class Element
{
public:
Element();
virtual ~Element(){}; // not sure if I need this
virtual Element& plus(const Element&);
virtual Element& minus(const ...
3
votes
4answers
206 views
Objective C, how to query if an object is of a certain class
I am deriving from TableViewCell. When i query the table view about an index path it returns a UITableViewCell. How do i find if this object is one of my custom type "CustomCell"?
3
votes
7answers
262 views
C# new class with only single property : derive from base or encapsulate into new?
I've tried to be descriptive :) It's rather programming-style problem than coding problem in itself.
Let's suppose we have :
A:
public class MyDict {
public Dictionary<int,string> dict;
...
3
votes
2answers
3k views
C++ Access derived class member from base class pointer
class Base
{
public:
int base_int;
};
class Derived : public Base
{
public:
int derived_int
};
Base* basepointer = new Derived();
basepointer-> //Access derived_int here, is it ...
3
votes
6answers
11k views
C#: How do I call a static method of a base class from a static method of a derived class?
In C#, I have base class Product and derived class Widget.
Product contains a static method MyMethod().
I want to call static method Product.MyMethod() from static method Widget.MyMethod().
I can't ...
3
votes
8answers
420 views
Java: Newbie-ish inheritance question
Suppose I have a base class B, and a derived class D. I wish to have a method foo() within my base class that returns a new object of whatever type the instance is. So, for example, if I call ...
2
votes
1answer
76 views
Calling a virtual method from a base class method
I want to call a overridden method from a base class method called by the derived class:
class Base {
Base();
virtual void function override() {}
void basefunction() {
override();
...
2
votes
3answers
49 views
Derived classes of abstract class in an Array
Good day everyone.
I have a question about making and using derived classes of some base abstract class.
I can't quite understand how it works.
My goal: Make a basic class that will define what ...
2
votes
3answers
83 views
Calling a method of a class through the interface implemented by the base class c#
I have this code but I just can't understand it.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1 {
interface IStoreable {
...
2
votes
1answer
57 views
MATLAB : import package for base class
i have a base class A and a derived class B which are stored in the following folder structures.
+myPackage (package Path)
@A ( folder of class A )
A.m ( filename of class )
@B
B.m
...
2
votes
2answers
56 views
How to dynamically create collections of derived objects?
This question may appear to have been answered before but I have been unable to find exactly what I need. Here is my situation:
// Base class
interface IAnimal {};
public abstract class Animal : ...
2
votes
5answers
139 views
Constructor and Destructor Inheritance
I believe Constructors and Destructors in base class cannot be inherited by derived classes of the base class. Is my understanding correct.
2
votes
4answers
196 views
Can a C# base-class method return this, even in a derived class?
I'd like to be able to have a method in a C# base class, callable on objects of several derived classes, that returns the object itself, and have the CLR know what type the object really is - i.e., ...
2
votes
3answers
112 views
static member definition with template base class
There is a base class:
template<class T_CLASS>
class TBase
{
protected:
static CSomeClass m_objSomeClass;
public:
inline void Set(CSomeClass f_objSomeClass) { m_objSomeClass = ...
2
votes
2answers
80 views
C# covariance on abstractly implemented interface
Using C#/.NET 4.0 I was hoping the following scenario would be possible:
interface IA<out TB> where TB : IB { }
interface IB { }
class A<TB> : IA<TB> where TB : IB { }
class B : IB ...
2
votes
2answers
87 views
Creating an instance of a derived class from an instance of the parent class
In general, given a class A, and a derived class DerivedFromA, and an instance of A, is there a way to construct DerivedFromA from that instance?
E.g., let's say that DerivedFromA simply overrides ...
2
votes
2answers
99 views
Extending base class fields functionality
I have next code that represents graph edges and nodes (simplified for question):
public class Node
{
}
public class Edge
{
public Node Source { get; set; }
public Node Target { get; set; }
...
2
votes
2answers
68 views
In which event-phase can a super-class refer to a potential existing component in it's derived-class?
In Flex, lets say I have a super-class... something like:
class SuperComponent extends DragStack {
private var _childReference:UIComponent;
public function SuperComponent() {
// ???
...