Tagged Questions
The static-cast tag has no wiki summary.
22
votes
4answers
8k 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*>(b);
when ...
19
votes
2answers
286 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 = ...
17
votes
5answers
4k views
Should I use static_cast or reinterpret_cast when casting a void* to whatever
Both static_cast and reinterpret_cast seem to work fine for casting void* to another pointer type. Is there a good reason to favor one over the other?
12
votes
6answers
698 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
278 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
164 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?
6
votes
4answers
2k 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?
5
votes
8answers
836 views
Is my method for avoiding dynamic_cast<> faster than dynamic_cast<> itself?
I was answering a question a few minutes ago and it raised to me another one:
In one of my projects, I do some network message parsing. The messages are in the form of:
[1 byte message type][2 bytes ...
4
votes
4answers
129 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 ...
4
votes
5answers
161 views
Why can't static_cast be used to down-cast when virtual inheritance is involved?
Consider the following code:
struct Base {};
struct Derived : public virtual Base {};
void f()
{
Base* b = new Derived;
Derived* d = static_cast<Derived*>(b);
}
This is prohibited by ...
4
votes
5answers
123 views
c++ - interpret unsigned as signed
I'm working on an embedded platform (ARM) and have to be careful when dealing with bit patterns. Let's pretend this line is beyond my influence:
uint8_t foo = 0xCE; // 0b11001110
...
3
votes
4answers
113 views
When is static cast safe when you are using multiple inheritance?
I found myself in a situation where i know what type something is. The Type is one of three (or more) levels of inheritance. I call factory which returns B* however T is either the highestlevel of a ...
3
votes
3answers
154 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
2answers
171 views
reinterpret_cast for almost pod data (is layout-compatibility enough)
I am trying to learn about static_cast and reinterpret_cast.
If I am correct the standard (9.2.18) says that reinterpret_cast for pod data is safe:
A pointer to a POD-struct object,
suitably ...
3
votes
2answers
90 views
Beginner's Question on Type Casting
I was going to use math.h on my numbers in my random number generator. It seems that I can only use the math.h functions on doubles. So:
I am trying to give "value" the value of "currentValue", or at ...
3
votes
7answers
263 views
cast Derived*const to Base*const
Edit - Put the question into context a bit more.
Given:
struct Base
{
...
};
struct Derived : public Base
{
...
};
class Alice
{
Alice(Base *const _a);
...
};
class Bob : public ...
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>
...
2
votes
1answer
49 views
How do I initialize template type variables?
template <class T>
void MyClass<T>::MyMethod()
{
// ...
// Which of the following initialization is better?
T MyVariable1 = 1; // 1st
T MyVariable2 = 2.0; ...
2
votes
1answer
220 views
C++ to C#, static_cast into enum
I'm trying to convert a bit of VC 6.0 C++ code to C#. Specifically, I'm parsing through a binary dat file and I've run into a problem converting this bit of code:
...
2
votes
5answers
189 views
Templated assignment operator question
I want to make sure that *this != &rhs in the assignment operator. But it won't compile. Any suggestions?
template <typename T>
class A {
public:
A() {
std::cout << ...
2
votes
2answers
145 views
Static_cast compiler error in C++ sdi application
I have a small SDI application to which I am trying to add tracking of menu usage, ie. how many times certain menu items are selected by the user.
Some menu items are handled by the View component ...
2
votes
2answers
277 views
How does implementing multiple COM interfaces work in C++?
I am trying to understand this example code regarding Browser Helper Objects.
Inside, the author implements a single class which exposes multiple interfaces (IObjectWithSite, IDispatch).
His ...
2
votes
5answers
1k views
Accessing subclass members from a superclass pointer C++
I have an array of custom class Student objects. CourseStudent and ResearchStudent both inherit from Student, and all the instances of Student are one or the other of these.
I have a function to go ...
1
vote
1answer
72 views
Mysterious behaviour of static_cast
I am trying to implement a class of numeric vectors. I am using Qt template QVector which is similar to the STL vector
typedef float ArithmeticF;
typedef QVector<ArithmeticF> VectorFloat;
...
1
vote
3answers
107 views
static_cast restricts access to public member function?
I'm getting "error: ‘A’ is an inaccessible base of ‘B’" in static_cast of the following example:
template<typename Derived>
class A {
protected:
void funA() { static_cast<Derived *> ...
1
vote
1answer
78 views
static_cast between 'unrelated types'
If I have this class structure:
class A
{
public:
int a;
void funcA(){a = 0;}
};
class B
{
public:
int b;
void funcB(){b = 0;}
};
class C: public A, public B
{
public:
int c;
...
1
vote
1answer
68 views
Pack Class Object Pointer into char * for message queue
Is it possible to properly and safely pass a class object pointer through a POSIX message queue?
For instance,
Object *obj = new Object();
mq_send(mqdes, static_cast<char*>&obj, ...
1
vote
3answers
205 views
C++ defensive programming: reading from a buffer with type safety
Let's say I have a class that I don't own: DataBuffer. It provides various get member functions:
get(uint8_t *value);
get(uint16_t *value);
...
When reading from a structure contained in this ...
1
vote
3answers
143 views
Union vs. static_cast(void*)
I'm writing code and until now I was using structures like this:
struct s{
enum Types { zero = 0, one, two };
unsigned int type;
void* data;
}
I needed some generic structure to store data ...
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 ...
1
vote
5answers
383 views
Can static_cast turn a non-null pointer into a null pointer?
I need to write code for a callback function (it will be called from within ATL, but that's not really important):
HRESULT callback( void* myObjectVoid )
{
if( myObjectVoid == 0 ) {
return ...
1
vote
7answers
430 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 an inheritance ...
0
votes
0answers
14 views
Retrieving pointers from a vector
I've been working on a project that uses a graph-based API. I have need of being able to traverse the graph and push pointers to existing nodes into a list (in this case, a std::vector).
Of course, ...
0
votes
3answers
61 views
Functor version of static_cast in std::bind()
I try to implement a functor version of static_cast for use in std::bind().
I am aware of Boost ll_static_cast<K>() (see using static_cast with boost::bind), but I am not using Boost right now.
...
0
votes
1answer
45 views
How chained static_cast is well-defined?
(5.2.9/10) An rvalue of type "pointer to cv1 void" can be converted to an rvalue of type "pointer to cv2 T," where T is an object type and cv2
is the same cv-qualification as, or greater ...
0
votes
3answers
45 views
C++ Polymorphism, incomplete downcasting
I have an array which holds references to a bland base type, let's call it Object.
I have derived Class1 from Object and Class2 from Class1.
#include <vector>
class Object {};
class Class1 : ...
0
votes
1answer
88 views
Declaring different data types inside if statements depending on circumstance: how to shut up the compiler?
Hey so I'm making a serialization function that takes a base class pointer 'Joint', extracts the 'type' of joint descendent it is, and then want to instantiate the correct type of 'definition' based ...
0
votes
1answer
225 views
C++ static_cast runtime overhead
See the code below.
a) Does, in this case (simple inheritance, no virtual members), the static cast in B::df() have any overhead (whatsoever)? I found some conflicting answers to similar questions, ...
0
votes
3answers
421 views
Error converting types in C++
I have a program in which I need to use the Format(); function to combine a string literal and a int into a CString variable. I have tried several different ways of doing this, the code for them is ...
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 ...
0
votes
3answers
201 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 D* if I'm sure that ...
0
votes
9answers
3k 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 char uc6;
} ...
0
votes
6answers
313 views
C++ syntax question
What does the following syntax mean?
typedef void* hMyClass; //typedef as a handle or reference
hMyClass f = &something;
const MyClass& foo = static_cast<MyClass&>(*f);
foo.bar();