3
votes
4answers
157 views
What is the difference between static_cast<> and C style casting?
Is there any reason to prefer static_cast<> over C style casting? Are they equivalent? Is their any sort of speed difference?
3
votes
4answers
421 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 …
6
votes
4answers
592 views
static_cast with boost::shared_ptr?
What is the equivalent of a static_cast with boost::shared_ptr?
In other words, how do I have to rewrite the following
Base* b = new Base();
Derived* d = static_cast<Derived* …
0
votes
3answers
149 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 …
0
votes
9answers
409 views
Convert struct to unsigned char *
How can I convert the following struct to unsigned char*?
typedef struct {
unsigned char uc1;
unsigned char uc2;
unsigned char uc3;
unsigned char uc5;
unsigned …
0
votes
6answers
186 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 …
4
votes
4answers
343 views
What is the difference between static_cast and Implicit_cast?
What is implicit_cast? when should I prefer implicit_cast rather than static_cast?
7
votes
1answer
237 views
What’s up with static_cast with multiple arguments???
Hello world.
Can anyone tell me what this cast has for effect (besides setting happyNumber to 1337), if any at all, and if it has no other effect, how come I can write code like t …
0
votes
6answers
266 views
C++ syntax question
Hi,
What does the following syntax mean?
typedef void* hMyClass; //typedef as a handle or reference
hMyClass f = &something;
const MyClass& foo = static_cast<MyClass&am …
