Tagged Questions
4
votes
1answer
87 views
How to design around the limitation that templated member functions can't be virtual
I'm running into a design issue where (in C++) I'd like a templated member function (of a non-template class) to be virtual and am wondering if there is a good, elegant way around the issue.
The ...
1
vote
3answers
121 views
Polymorphism without virtual in C++ for multi level inheritance
I have a situation where I need to achieve polymorphism with out vtable. Here is what I am trying to do
- There is a class hierarchy: C extends B, B extends A
- The idea is to declare a function ...
2
votes
2answers
65 views
Assigning a template value to a class template via a pointer to its non-template parent class
I'm trying to make a C++ Template class that can store a template value. However, I need to create pointers to this class before the type of the template value is known. To do this, I created an ...
2
votes
2answers
69 views
Calling a base class method in a template virtual class hierarchy
Let's say I have the following class hierarchy:
template< class T >
class TestBase {
public:
virtual T const & do_foo() = 0;
};
template< class T >
class TestDerived : public ...
12
votes
4answers
177 views
Why is the “virtuality” of methods implicitly propagated in C++?
What is the reason for removing the ability to stop the propagation of methods virtuality?
Let me be clearer: In C++, whether you write "virtual void foo()" or "void foo()" in the derived class, it ...
0
votes
1answer
133 views
pure virtual template functions in a template class
So my instructor handed out some code that I believe does not work at all and I want to get some clarification on it. He used this in his hand out notes (it implies that this is correct).
...
0
votes
2answers
205 views
C++ Virtual boost::any Inheritance
Basically, I'm trying to write a base class that has a generic iterator in.
So apparently template virtual functions don't work, that's why I tried boost::any, but it is still not overloading ...
4
votes
3answers
86 views
Creating a virtual template method in Java
The situation I'm trying to create is the following:
I have a base class containing a static template method that receives a ResultSet filled by a query in the database, and returns a list with the ...
1
vote
1answer
147 views
Inherting from template abstract class
I am new to c++. Its my first time working with templates. I want to define some sort of interface with pure virtual functions, but the return types of those functions may vary depending on the ...
0
votes
1answer
172 views
Overriding base template class method
How do you override a base templatized class method (that is, a template class with a non-template method) in a child?
#include <Windows.h>
#include <iostream>
struct S{};
template ...
0
votes
1answer
427 views
Interface for template member functions
Is there some common way to define a interface for template member functions? I would like to create some pure abstract base classes with declarations of template member functions that should be ...
0
votes
2answers
173 views
template virtual function
Here is some code:
class IWorker {
public:
virtual void Do(int x) const = 0;
};
class TSomeWorker : public IWorker {
void Do(int x) const {
// ...
}
};
Now, imagine that we ...
0
votes
4answers
251 views
Call the cast operator of template base class within the derived class
I have a template class, called Cell, here the definition:
template <class T>
class OneCell
{
.....
}
I have a cast operator from Cell to T, here
virtual operator const T() const
{
.....
...
2
votes
2answers
120 views
Template Member Function to Write to Output Iterator
I thought I would be smart and create member functions that accepted output iterators. This way, I could avoid returning a collection or taking a collection by reference. For example:
template ...
5
votes
2answers
212 views
C++ virtual method that takes STL-style iterators
I want to have an interface ModelGenerator which has a method generate() that takes an iterable list of Evidence and creates a Model. Using the STL pseudo-duck-typing iterator idiom...
...
5
votes
3answers
1k views
Template definitions outside class body
Is it O.K. to define virtual function of class template outside its body? Virtual function can not be inlined, but to avoid multiple definitions in compilation units they shall be marked inline ...
0
votes
2answers
303 views
Is it possible to define “virtual” default implemetation for getter-setter without preprocessor macros
It is possible to use template for default implemetation of getter-setter.
For instance - http://www.kirit.com/C%2B%2B%20killed%20the%20get%20%26%20set%20accessors/A%20simple%20meta-accessor.
Most ...
5
votes
1answer
433 views
undefined reference to `vtable for a template
I have a template class which inherits from an interface class and therefore has virtual functions
//abstract.h
class Abstract {
virtual void abc();
Abstract();
}
//Abstract.cpp
Abstract::Abstract()
...
2
votes
1answer
83 views
How to derive a template function? OR What is preffered approach for this scenerio?
I've two functions
MultiplyVerison1(T x, T y); // in class A
MultiplyVersion1(T x, T y); // in class B
Above functions are in separate non-template classes.
Now, as part of refactoring I'm trying ...
2
votes
3answers
337 views
c++ reinterpret_cast, virtual, and templates ok?
In C++, assume following class hierarchy:
class BaseClass { };
class ChildClass : public BaseClass { };
Further assume factory classes for these two classes with a common, templated base class:
...
7
votes
3answers
1k views
Are pure virtual methods allowed within a template class?
Once before, I was certain that you couldn't do this, but the other day I was playing around with some code and it seemed to compile and work. I just want to verify that I am not just getting lucky. ...
2
votes
2answers
226 views
delete this and placement new of virtually derived class
class base {
int a;
protected:
template<class T>
class derived;
public:
base() {}
virtual ~base() {}
virtual void func() {}
static base* maker();
};
template ...
1
vote
5answers
909 views
C++ Virtual template method
I have an abstract class (I know that it will not compile this way, but it's for comprehension of what I want to do) :
class AbstractComputation {
public:
template <class T> virtual ...
0
votes
1answer
210 views
Case Study: Polymorphism for Image Processing
I'm studying Digital Image Processing by myself and would be really grateful if somebody could comment whether polymorphism should be applied for this case or if there's a better class design.
...
1
vote
2answers
324 views
Template and Virtual functions in C++ ? allowed ?
I've read over the web that template virtual functions are not allowed , is it true ?
It's a little bit weird since this code compile great on my Eclipse's g++
template <class T>
class A {
...
2
votes
4answers
801 views
CRTP to avoid virtual member function overhead
In C++: CRTP to avoid dynamic polymorphism, the following solution is proposed to avoid the overhead of virtual member functions and impose a specific interface:
template <class Derived>
struct ...
2
votes
5answers
457 views
How to bypass template virtual function to attain my goal?
I know this isn't legal C++ due to the compiler not being able to determine how big exactly the vtable is. I'm looking for alternatives.
Basically, I have an abstract base class defining the ...
1
vote
2answers
279 views
Use non-virtual dispatch in a template
I want to call a member function which is virtual (inheritance is used in most places to keep things simple), but I want to force calling it using non-virtual dispatch sometimes, in performance ...
1
vote
2answers
535 views
Virtual Template Workarounds
I have a template container class that I derive from called MyContainer. MyContainer defines methods like Get(), Set(), etc. to access individual elements. I'd like to make a bitfield class ...
5
votes
1answer
906 views
C++ templated return value with pure virtual function
I have an abstract Handle<T> class that contains references an objects of type T. I want to be able to have that class be able to be converted to Handle<U>, where U is a superclass of T. I ...
4
votes
5answers
3k views
How to achieve “virtual template function” in C++
first off: I have read and I know now that a virtual template member function is not (yet?) possible in C++. A workaround would be to make the class a template and then use the template-argument also ...
3
votes
2answers
259 views
C++ Template Design Question
I have a model written in C++ which is based on run-time polymorphism and virtual functions. The model works completely fine as is. I'd like to investigate converting this to templates and ...
1
vote
1answer
82 views
Linker/Inheritance/Virtual function problems
Having trouble inheriting from a template class.
Looks something like this:
template<typename type>
class base {
protect:
...
public
...
virtual bool func1(type var1);
};
...
0
votes
2answers
592 views
Virtual friend functions and template explicit specializations
I'm trying to simulate the effect of a virtual friend function by using a protected virtual member function (http://www.parashift.com/c++-faq-lite/friends.html#faq-14.3).
In addition, I use explicit ...
2
votes
1answer
994 views
C++ Generic Table Data Structure
Let's have a bunch of tables. Tables have columns. Each column hold data of its kind. I am looking for a structure for a generic table that would allow me to access elements at given coordinates and ...
3
votes
4answers
3k views
templates may not be ‘virtual’
Given the code below, the compiler is showing a message pointing that error: templates may not be ‘virtual’. Does anyone have a suggestion on how to solve the bug?
template < class FOO_TYPE>
...
4
votes
3answers
422 views
Passing type information to function in lieu of virtual template function C++
I have a base class which implements the following:
struct Consumer
{
template <typename T>
void callback(T msg) { /*null implementation */ }
};
I then have a class implement this:
...
0
votes
2answers
677 views
Why do I get linker errors trying to build C++ code using pure virtual functions within a template?
In an application I'm currently writing, I created a template class with a pure virtual function, then an another class inheriting an instance of the former and implementing the virtual function. The ...
1
vote
0answers
150 views
Templated virtual member functions [duplicate]
Possible Duplicate:
Template member function virtual?
Why are templated virtual member functions not allowed?
I was just playing around a bit with some sample code and the following code ...
0
votes
9answers
297 views
Two really similar classes in C++ with only one different method: how to implement?
I have two classes that are almost identical, besides one method. The classes have the same data part and all the member functions but one:
class A {
private:
double data;
public:
double calc(){
...
2
votes
2answers
1k views
Inheritance and templates and virtual functions ( this can get messy)
Just finding my way around templates so was trying out a few stuff.
Let me know what I am doing wrong here.
I am trying to overload a inherited templates virtual method.
// class templates
...
2
votes
1answer
863 views
C++: overriding pure virtual member variable?
This question is best described in code. I have a class called Vertex that contains an instance of a class called Params:
class Params {
virtual Params operator + (Params const& p) = 0;
};
...
0
votes
1answer
174 views
do i need virtual destructor for boost::ublas matrix?
do i need virtual destructor when iam using boost::ublas matrix ? btw my class is a template class
0
votes
2answers
126 views
C++ - design question
I am working on game engine prototype and have the following question:
Right now my engine implementation is DirectX-bound and everything works fine.
I've got a core::Renderer class which has ...
1
vote
2answers
264 views
How do you return a pointer to a base class with a virtual function?
I have a base class called Element, a derived class called Vector, and I'm trying to redefine two virtual functions from Element in Vector.
//element.h
template <class T>
class Element
{
...
2
votes
4answers
2k views
need a virtual template member workaround
I need to write a program implementing the visitor design pattern. The problem is that the base visitor class is a template class. This means that BaseVisited::accept() takes a template class as a ...
3
votes
2answers
3k views
Template Child Class Overriding a Parent Class's Virtual Function
The below code compiles with gcc v4.3.3 and the templated child class seems to be overriding a virtual function in the parent, but doesn't that break the rule that you cannot have a virtual template ...
3
votes
4answers
1k views
virtual methods and template classes
I got over a problem, I think a very specific one.
I've got 2 classes, a B aseclass and a D erived class (from B aseclass).
B is a template class ( or class template) and has a pure virtual method ...
2
votes
2answers
233 views
Abstract base class puzzle
In my class design I ran into the following problem:
class MyData
{
int foo;
};
class AbstraktA
{
public:
virtual void A() = 0;
};
class AbstraktB : public AbstraktA
{
public:
virtual ...
1
vote
3answers
197 views
Removing the repeating pattern in C++
I have atleast 16 functions of the following form.
bool Node::some_walker( Arg* arg1 )
{
if(this == NULL)
return false;
bool shouldReturn = false;
if( ...


