Tagged Questions
The base-class tag has no wiki summary.
15
votes
7answers
1k views
Creating a singleton in python
This question is not for the discussion of whether or not the Singleton design pattern is desirable, is an anti-pattern, or for any religious wars, but to discuss how this pattern is best implemented ...
13
votes
5answers
2k views
Do you have a common base class for Hibernate entities?
Do you have a common base class for Hibernate entities, i.e. a MappedSuperclass with id, version and other common properties? Are there any drawbacks?
Example:
@MappedSuperclass()
public class ...
10
votes
1answer
138 views
Scala: How can I make my immutable classes easier to subclass?
I've recently created an immutable class supporting operations like +, -, etc. that returns a new instance of that class when it is changed.
I wanted to make a subclass of that class to add a bit of ...
9
votes
2answers
430 views
How to call an explicitly implemented interface-method on the base class
I have a situation, where two classes (one deriving from the other) both implement the same interface explicitly:
interface I
{
int M();
}
class A : I
{
int I.M() { return 1; }
}
class B : A, I
{
...
8
votes
5answers
691 views
C++ template duck-typing vs pure virtual base class inheritance
Which are the guidelines for choosing between template duck-typing and pure virtual base class inheritance? Examples:
// templates
class duck {
void sing() { std::cout << "quack\n"; }
};
...
8
votes
8answers
5k views
C# Class naming convention: Is it BaseClass or ClassBase or AbstractClass
What is the recomemded approach to naming base classes? Will it be prefixing the type name with a "Base" or "Abstract" or whould we just suffix it with "Base"!
consider the following:
type: ...
7
votes
3answers
187 views
Pointer to member question
$4.11/2 states -
An rvalue of type “pointer to member
of B of type cv T,” where B is a class
type, can be converted to an rvalue of
type “pointer to member of D of type
cv T,” where D is ...
7
votes
3answers
138 views
Guarantees on address of baseclass in C++?
In C struct's, I'm guaranteed that:
struct Foo { ... };
struct Bar {
Foo foo;
...
}
Bar bar;
assert(&bar == &(bar.foo));
Now, in C++, if I have:
class Foo { ... };
class Bar: public ...
7
votes
6answers
2k views
C# protected members accessed via base class variable
It may seems rather newbie question, but can you explain why method Der.B() cannot access protected Foo via Base class variable? This looks weird to me:
public class Base
{
protected int Foo;
}
...
6
votes
2answers
2k views
Entity Framework 4.1 Code First: Get all Entities with a specific base class
I have a DbContext with set up different DbSet<T>s with all types that derive from the same base class:
public class Foo : Entity { }
public class Bar : Entity { }
MyDbContext : DbContext
{
...
6
votes
4answers
283 views
Class Identifier used inside the class declaration. Is it a good practice?
While reviewing one of our C++ class through coverity, it showed an error message on a particular class. The class is as follows:
class InputRecord
{
/* Construtor */
...
...
5
votes
3answers
324 views
Erroneous private base class inaccessible?
Compiling this code using g++ 4.2.1:
struct S { };
template<typename T> struct ST { };
template<typename BaseType>
class ref_count : private BaseType { };
template<typename ...
5
votes
5answers
369 views
C++ : Call a base class method automatically?
Here we go,
I'm trying to implement the command design pattern, but I'm stumbling accross a conceptual problem.
Let's say you have a base class and a few subclasses like in the example bellow :
...
4
votes
4answers
286 views
Inheritance base class reference C#
class Base
{
//...
public int i = 5;
}
class Drifted : Base
{
//...
public int b = 10;
}
Base ObjectOrReference = new Drifted();
So Base ObjectOrReference;is ...
4
votes
4answers
157 views
when to use multiple class libraries?
When should I use multiple class libraries in .NET. I have a situation where I need to use the functionalities of Microsoft Office Object Model to check certain attributes of Microsoft Office files. ...
4
votes
2answers
411 views
C++: Protected Class Constructor
If a class is always going to be inherited, does it make sense to make the constructor protected?
class Base
{
protected:
Base();
};
class Child : protected Base
{
public:
Child() : Base();
...
4
votes
2answers
339 views
C#: why Base class is allowed to implement an interface contract without inheriting from it?
I've stumbled upon this "feature" of C# - the base class that implements interface methods does not have to derive from it.
Example:
public interface IContract
{
void Func();
}
// Note that ...
4
votes
5answers
345 views
Concise (yet still expressive) C++ syntax to invoke base class methods
I want to specifically invoke the base class method; what's the most concise way to do this? For example:
class Base
{
public:
bool operator != (Base&);
};
class Child : public Base
{
public:
...
4
votes
1answer
397 views
How to make user control partial classes aware of controls declared in the base class?
Do we have to do something special to have ASP.NET partial classes aware of controls that are declared in our user control's base classes? The partial classes keep generating declarations for controls ...
3
votes
3answers
70 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
3answers
71 views
C# Cast Object to List of Base Class
I have the following class structure:
public class Fruit { }
public class Apple : Fruit { }
And then I am using a method from the .net framework that gets me a property value from a class returned ...
3
votes
4answers
71 views
C# Unused fields in base classes
In a prism application I have a module definition like this:
[Module(ModuleName = "TestModule", OnDemand = true)]
public class Test :
ModelBase,
IModule
{
...
moduleName = "TestModule";
...
3
votes
2answers
409 views
How can I polymorphic deserialization Json String using Java and Jackson Library?
I've some classes A, B, C they all inherit from class BaseClass.
I've a String json that contains the json representation of the A, B, C or BaseClass.
I want to have some way to deserialize this ...
3
votes
2answers
147 views
Understanding virtual base classes and constructor calls
Possible Duplicate:
Who calls constructor in virtual inheritance?
I'm a bit confused about how virtual base classes work. In particular, I was wondering how the constructor of the base ...
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
5answers
417 views
What are good candidates for base controller class in ASP.NET MVC?
I've seen a lot of people talk about using base controllers in their ASP.NET MVC projects. The typical examples I've seen do this for logging or maybe CRUD scaffolding. What are some other good uses ...
3
votes
3answers
123 views
Generating member types for containers
When I define my own containers, I have to provide a dozen of member types, for example:
typedef T& reference;
typedef const T& const_reference;
typedef T* iterator;
typedef ...
3
votes
3answers
616 views
C++: Accessing parent methods and variables
In which way should I access this parent method and parent variable?
class Base
{
public:
std::string mWords;
Base() { mWords = "blahblahblah" }
};
class Foundation
{
public:
Write( ...
3
votes
4answers
891 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
2answers
607 views
invoke a new method of a sub class from base class
I've some classes like this
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
A a = new C();
a.method();
...
3
votes
5answers
227 views
C++: Avoiding dual maintenance in inheritance hierarchies
When creating a C++ inheritance structure, you have to define member functions exactly the same in multiple places:
If B is an abstract base class, and D, E, and F all inherit from B, you might have ...
3
votes
3answers
885 views
Force derived class to call base function
If I derive a class from another one and overwrite a function, I can call the base function by calling Base::myFunction() inside the implementation of myFunc in the derived class.
However- is there a ...
3
votes
4answers
2k views
How to hide an inherited property in a class without modifying the inherited class (base class)?
If i have the following code example:
public class ClassBass
{
public int ID { get; set; }
public string Name { get; set; }
}
public class ClassA : ClassBass
{
public int JustNumber { ...
3
votes
4answers
4k views
Raise Base Class Events in Derived Classes C#
I have a base class DockedToolWindow : Form, and many classes that derive from DockedToolWindow. I have a container class that holds and assigns events to DockedToolWindow objects, however I want to ...
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
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
45 views
placing functions to be used by any derived classes in the base class?
class tabBase
{
public:
tabBase() { }
virtual ~tabBase() { }
virtual void write() {}
virtual void read() {}
virtual void start() {}
virtual void stop() {}
virtual void ...
2
votes
2answers
82 views
Which is best place to write common codes Static Helper class or Base Class?
I have to write large amount of code which is going to be used in three asp.net pages.
I want to know the key points so that I can decide whether I should create Static Helper class , or create base ...
2
votes
5answers
135 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
3answers
116 views
template method overrides non-template method
I want to put any kind of Object (Object, Object etc.) into one shared_ptr. So I created base class and use shared_ptr.
But, how can I declare
T getMember();
within the base class so I can call ...
2
votes
3answers
178 views
Can I have a base class where each derived class has its own copy of a static property?
I have something like the following situation below:
class Base
{
public static int x;
public int myMethod()
{
x += 5;
return x;
}
}
class DerivedA : Base
{
...
2
votes
1answer
82 views
Interface + Baseclass - What pattern is this?
I have defined an interface that is implemented by a base class. This base class provides basic functionalities. Now I have multiple implementations that implement the base class and expand these ...
2
votes
1answer
784 views
Call derived class method from base class reference
class Material
{
public:
void foo()
{
cout << "Class Material";
}
};
class Unusual_Material : public Material
{
public:
void foo()
{
cout << "Class Unusual_Material";
}
};
int ...
2
votes
4answers
581 views
Calling subclass constructor from static base class method
Ok... in C++ you can new up a subclass from a static method in the base class with 'new this()' because in a static method, 'this' refers to the class, not the instance. That was a pretty damn cool ...
2
votes
1answer
99 views
Looking for generic way to implement function in base class
I'm trying to do a simple implementation of the Specification pattern in my domain layer.
If I have a static class full of specifications like this:
public static class FooSpecifications
{
public ...
2
votes
4answers
127 views
How do you work with a variable that can be of multiple types?
I frequently link objects to their parents using:
Video parent;
Sometimes I have objects that can be children of different object types, so do I:
int parentType;
Video parentVideo; // if parent ...
2
votes
5answers
459 views
compiler warning at C++ template base class
I get a compiler warning, that I don't understand in that context, when I compile the "Child.cpp" from the following code. (Don't wonder: I stripped off my class declarations to the bare minuum, so ...
2
votes
2answers
187 views
Exception catching from base of the class
I have a base class, and I would like to catch all exceptions of the derived class within the base class, is this possible?
You won't know what the methods are from the derived class.
2
votes
7answers
3k views
.NET: Unable to cast object to interface it implements
I have a class (TabControlH60) that both inherits from a base class (UserControl) and implements an interface (IFrameworkClient). I instantiate the object using the .NET Activator class. With the ...
2
votes
6answers
11k views
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?
Is it possible to assign a base class object to a derived class reference with an explicit typecast in C#?.
I have tried it and it creates a run-time error.