0
votes
3answers
127 views
what exactly is dynamic casting in c++
can anyone tell what exactly is dynamic casting means in c++.
where exactly can we use this dynamic casting?
this was asked to me in the interview and i went blank for this questio …
0
votes
1answer
54 views
Is this proper use of dynamic_cast?
I have three classes: Generic, CFG, and Evaluator.
Here's Generic:
class Generic: public virtual Evaluator, public CFG, public LCDInterface {
Here's CFG:
class CFG : public vi …
2
votes
3answers
139 views
Is LLVM an exception to the rule for avoiding dynamic casts?
LLVM has it's own hand rolled alternative to RTTI that is a speed improvement over built-in RTTI and allows dynamic casting to classes with no vtable (dyn_cast). However, it can st …
1
vote
3answers
48 views
Do I need to use dynamic_cast when calling a function that accepts the base class?
I have some classes like this:
interface class IA
{
};
interface class IB
{
};
public ref class C : public IA, public IB
{
};
public ref class D
{
void DoSomething(IA^ aaa)
{ …
0
votes
3answers
180 views
Acceptable to use virtual inheritance to prevent accidentally creating a diamond?
This is a simplification of some real code, and a real mistake I made when I didn't realize someone else had already implemented Foo and derived from it.
#include <iostream> …
1
vote
2answers
50 views
dynamic_cast of a COM object to a COM interface doesn’t bump the reference count, does it?
If I have a C++ class, X, which implements the COM interfaces IY and IZ, and I have a pointer y to the IY interface of an object of type X, and I do this:
IZ *z = dynamic_cast< …
3
votes
4answers
410 views
Static cast vs. dymamic cast for traversing inheritance hierarchies
I saw one book on C++ mentioning that navigating inheritance hierarchies using static cast is more efficient than using dynamic cast.
Example:
#include <iostream>
#include …
0
votes
4answers
168 views
Difference in behavior while using dynamic_cast with reference and pointers
I was checking the behavior of dynamic_cast and found that when it fails, std::bad_cast exception is thrown only if the destination is a reference type. If the destination is a poi …
5
votes
5answers
390 views
dynamic cast with interfaces
I have a class with implements 2 interfaces and inherits 1 class. So, generally it looks like this:
class T : public A, public IB, public IC {
};
There is one point in the code …
0
votes
7answers
247 views
Should I be using dynamic_cast<T> for copying?
Update 1:
Corrected nonsense code! Thanks for comments, I made a hash of the first snippet, oops.
Update 2:
Also updated question title, as the use of dynamic_cas …
1
vote
6answers
402 views
dynamic_cast fails
I have a base class and a derived class. Each class has an .h file and a .cpp file.
I am doing dynamic_cast of the base class object to the derived class in the following code:
h …
2
votes
5answers
179 views
How should I distinguish between subclasses
I have a token class that looks something like this:
class Token
{
public:
typedef enum { STRTOK, INTTOK } Type;
virtual bool IsA(Type) = 0;
}
class IntTok : public Token
…
1
vote
7answers
1k views
C#: Casting types dynamically
I currently have this type of code:
private void FillObject(Object MainObject, Foo Arg1, Bar Arg2)
{
if (MainObject is SomeClassType1)
{
SomeClassType1 HelpObject …
5
votes
10answers
795 views
How can I avoid dynamic_cast in my C++ code?
Let's say I have the following class structure:
class Car;
class FooCar : public Car;
class BarCar : public Car;
class Engine;
class FooEngine : public Engine;
class BarEngine : …
1
vote
9answers
474 views
Safely checking the type of a variable
For a system I need to convert a pointer to a long then the long back to the pointer type. As you can guess this is very unsafe. What I wanted to do is use dynamic_cast to do the c …
