Tagged Questions
20
votes
2answers
305 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
753 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
372 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
150 views
Why is it important to use static_cast instead of reinterpret_cast here?
At a reply of a blog post of Raymond Chen,
A questioner pointed out
Raymond, I believe the C++ example is not correct since the position
of the base class subobject in the derived class is ...
8
votes
2answers
299 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 ...
8
votes
1answer
385 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
6answers
212 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
169 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
3k 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
138 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
163 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
4k 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>
...
2
votes
2answers
90 views
Why does dynamic_cast exist? [closed]
Possible Duplicate:
Regular cast vs. static_cast vs. dynamic_cast
I learned how static_cast works by this question.
Why is it important to use static_cast instead of reinterpret_cast here?
...
1
vote
1answer
169 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
432 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 ...