Tagged Questions
2
votes
5answers
189 views
Templated assignment operator question
I want to make sure that *this != &rhs in the assignment operator. But it won't compile. Any suggestions?
template <typename T>
class A {
public:
A() {
std::cout << ...
1
vote
3answers
107 views
static_cast restricts access to public member function?
I'm getting "error: ‘A’ is an inaccessible base of ‘B’" in static_cast of the following example:
template<typename Derived>
class A {
protected:
void funA() { static_cast<Derived *> ...
1
vote
7answers
430 views
C++, statically detect base classes with differing addresses?
If I have a derived class with multiple bases, each this pointer for each base will be different from that of the derived object's this pointer, except for one. Given two types in an inheritance ...