1
vote
6answers
436 views
Compile-time type based dispatch
Following techniques from 'Modern C++ Design', I am implementing a persistence library with various compile-time optimisations. I would like the ability to dispatch a function to a templated member …
1
vote
2answers
1k views
Function pointer to template class member functions
I have a templated class defined (in part) as
template <class T> MyClass
{
public:
void DoSomething(){}
};
If I want to call DoSomething from another clas …
2
votes
3answers
302 views
Compiler not creating templated ostream << operator
Hi,
I have a class, defined in a head as:
template <typename T> class MyClass
{
template <typename U> friend std::ostream& operator<<(std::ostream&a …
2
votes
2answers
164 views
Template function passed to shared library (c++)
Bit of a thought experiment... Ingredient 1: A class in a (precompiled) shared library that has a function that takes a pointer to an object derived from ostream:
void ClassName::Se …
1
vote
5answers
216 views
Correct formatting of numbers with errors (C++)
I have three sets of numbers, a measurement (which is in the range 0-1 inclusive) two errors (positive and negative. These numbers should be displayed consistently to the number of significant figu …
0
votes
Compile-time type based dispatch
I'm interested in doing this 'from first principles' as an educational curiosity. However, I will look at the Boost libraries.
In any case, I don't think is_base_of is any help - it does ex …
0
votes
Compile-time type based dispatch
Unfortunately I've been through that too (and it is, also, a runtime call ;) ) The compiler complains if you pass in non polymorphic or class types, in a similar way to before:
erro …
0
votes
Function pointer to template class member functions
You know, that is just what I needed to do. Bizzarly I had discounted it as a solution valid for my usecase early on, for reasons that now escape me. I think I was blinded by some metaprogramming s …
1
vote
Any way to cast with class operator only?
As template-related compiler error messages are usually a complete pain to unravel, if you don't mind specifying each conversion you can get the compiler to emit a more instructive message in the f …
0
votes
How would you improve this algorithm? (c string reversal)
WRT: "Now do it without temporary holding variable"... Something like this perhaps (and keeping array indexing for now):
int length = strlen(string);
for(int i = 0; i < length/2; …
-4
votes
6
votes
Check if array index exists
In C++, the size of an array is fixed when it is declared, and while you can access off the end of the declared array size, this is very dangerous and the source of hard-to-track-down bugs:
…
1
vote
How do I create an nullary Functor in C++ (using the loki library)
Looking at the source code, the Functor template definition is as follows:
template <typename R = void, class TList = NullType,
template<class, class> class Threadi …
0
votes
C++: CRTP to avoid dynamic polymorphism
This Wikipedia answer has all you need. Namely:
template <class Derived> struct …
7
votes
Question on multiple inheritance, virtual base classes, and object size in C++
Mark Santesson's answer is pretty much on the money, but the assertation that there are no vtables is incorrect. You can use g++ -fdump-class-hierarchy to show what's going on. Here's the no virtua …
