Tagged Questions

19
votes
2answers
287 views

Downcast in a diamond hierarchy

Why static_cast cannot downcast from a virtual base ? struct A {}; struct B : public virtual A {}; struct C : public virtual A {}; struct D : public B, public C {}; int main() { D d; A& a = ...
12
votes
6answers
699 views

Why do we have reinterpret_cast in C++ when two chained static_cast can do it's job?

Say I want to cast A* to char* and vice-versa, we have two choices (I mean, many of us think we've two choices, because both seems to work! Hence the confusion!): struct A { int age; char ...
10
votes
1answer
360 views

Is static_cast misused?

I have mixed feelings about static_cast, as it is the safest C++ cast available, but allows both safe and unsafe conversions at the same time, so you have to know the context to say if it is actually ...
9
votes
5answers
1k views

C++: can't static_cast from double* to int*

When I try to use a static_cast to cast a double* to an int*, I get the following error: invalid static_cast from type ‘double*’ to type ‘int*’ Here is the code: #include <iostream> int ...
8
votes
1answer
379 views

What's up with static_cast with multiple arguments?

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 this??? Is this a compiler bug, or ...
7
votes
2answers
283 views

May I have a real life example where casting through void* works and reinterpret_cast doesn't?

There's a set of questions regarding cross-casts (cast from T1* to unrelated T2*), for example this and this. The answer usually goes like this: reinterpret_cast is implementation defined and ...
7
votes
6answers
203 views

C++ When should we prefer to use a two chained static_cast over reinterpret_cast

First of all, this is not a duplicate of Why do we have reinterpret_cast in C++ when two chained static_cast can do it's job?. I know situations where we cannot use even two chained static_cast to ...
7
votes
4answers
165 views

How to implement a compile-time check that a downcast is valid in a CRTP?

I have a plain old CRPT (please don't get distracted by access restrictions - the question is not about them): template<class Derived> class Base { void MethodToOverride() { ...
7
votes
4answers
2k 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?
4
votes
4answers
130 views

static_cast and temporary creation (final edition)

Prerequisities: To understand this question, please, read the following question and its answer at first: Cast auto_ptr<Base> to auto_ptr<Derived> At Cast auto_ptr<Base> to ...
3
votes
3answers
155 views

Why go through the trouble of static_cast-ing a number to a double?

Ran across this in code I'm working through: double part2 = static_cast<double>(2) * somthing1 * ( static_cast<double>(1) + something2 ) + ( static_cast<double>(1) / ...
3
votes
4answers
3k 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 <typeinfo> ...
1
vote
1answer
160 views

Invalid conversion from… Objective-C++

I just told Xcode to compile everything as Objective-C++ and now I have errors from casting. void audioRouteChangeListenerCallback ( void ...
0
votes
3answers
417 views

Cast from Void* to TYPE* using C++ style cast: static_cast or reinterpret_cast

So if your converting from Void* to Type* or from Type* to Void* should you use: void func(void *p) { Params *params = static_cast<Params*>(p); } or void func(void *p) { Params ...