Tagged Questions
3
votes
5answers
1k views
Accessing subclass members from a superclass pointer C++
I have an array of custom class Student objects. CourseStudent and ResearchStudent both inherit from Student, and all the instances of Student are one or the other of these.
I have a function to go ...
1
vote
3answers
110 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 *> ...
0
votes
3answers
202 views
Is downcasting this during construction safe?
I have a class hierarchy where I know that a given class (B) will always be derived into a second one (D). In B's constructor, is it safe to statically cast the this pointer into a D* if I'm sure that ...