Tagged Questions
-2
votes
2answers
37 views
Alternatives to downcasting when implementations have unique methods [closed]
I have the following Issue. Where I have to cast inside of the makeLeftTurnMethod... this looks very ugly to me.. Is there a way where I don't have to do this?
public interface Car(){
public void ...
5
votes
4answers
319 views
Downcasting from base pointer to templated derived types
I have the following hierarchy:
class base
{
public:
virtual ~base(){}
virtual void foo() {}
};
template <typename T>
class derived1 : public base
{
virtual void foo() {};
};
...
1
vote
3answers
430 views
Why Base-to-Derived Dynamic Casting is Only Allowed for Polymorphic Classes [duplicate]
Possible Duplicate:
FAQ: Why does dynamic_cast only work if a class has at least 1 virtual method?
I have read that in C++, performing a dynamic cast down the hierarchy of a set of classes, ...
2
votes
1answer
278 views
What's faster: down-cast from virtual base or cross-cast?
This is somewhat hypothetical as I'm not too worried about performance - just wondering which option is actually the fastest/most efficient in general, or if there is no difference whatsoever.
...