A C++ cast operator to convert from one type to another, using only information about the static type of the object being cast
5
votes
2answers
145 views
static_cast void* char* vs static_cast void** char**
If I do the following all is ok:
char* cp = "abc";
void* vp = NULL;
vp = static_cast<void*>(cp);//ok
cp = static_cast<char*>(vp);//ok
But the following is not:
char** cpp = &cp;
...
4
votes
4answers
137 views
C++ proper way to static_cast
static_castwill not throw an exception. But if it does not succeed, it will produce a undefined result. What is the most proper way to check whether the cast succeeded?
Will this help?
NewType ...
12
votes
3answers
277 views
Proper way of casting pointer types
Considering the following code (and the fact that VirtualAlloc() returns a void*):
BYTE* pbNext = reinterpret_cast<BYTE*>(
VirtualAlloc(NULL, cbAlloc, MEM_COMMIT, PAGE_READWRITE));
why is ...
0
votes
0answers
89 views
Critique about cocos2d-x coding style - C-style casts vs static_cast
In cocos2d-x source code there is some code that handles member function pointers, shown below.
...
#define menu_selector(_SELECTOR) (SEL_MenuHandler)(&_SELECTOR)
...
typedef ...
1
vote
1answer
91 views
static_cast an interface to derived class
I am trying to static_cast an interface object into object of derived class which inherits that interface. I am getting an error
'static_cast' : cannot convert from 'IInherit *' to 'cDerived *'
...
4
votes
2answers
166 views
Why can't I use static_cast<int&> to pass an integer reference parameter to a function in C++?
I have an enum parameter in a C++ program that I need to obtain using a function that returns the value through a parameter. I started by declaring it as an int but at code review was asked to type ...
1
vote
3answers
143 views
C++ static_cast<void *>
Could someone explain this little code snippet for me?
Given:
int a[3] = {2,3,4};
Why does the following evaluate to true?
static_cast<void *>(a) == static_cast<void *>(&a); // ...
1
vote
1answer
93 views
Should I use static_cast or INT64_C to assign 64-bit constant portably?
Assigning a 64-bit constant as
int64_t foo = 0x1234LL;
is not portable, because long long isn't necessarily int64_t. This post Which initializer is appropriate for an int64_t? discusses use of ...
-6
votes
2answers
76 views
Cant static cast class to integer [closed]
Why am i getting a error when i try to static cast a element* to an int
typedef Element* ElementPtr
int Element::getVP (ElementPtr item)
{
return static_cast <int>(item); // I have a class ...
0
votes
1answer
63 views
using dynamic_cast for runtime type identification
when reading Essential c++ chapter 5.10 Run-time Type identification, I've encountered a problem. Let me introduce a little background first. There are a base class named num_sequence and a class ...
0
votes
1answer
153 views
C++ Type casting from double to const int does not work properly
I have a variable of type const int, but the parameters that it's dependent upon are of type double. When I try to cast this down from a 'double' to a 'const int', it doesn't work properly. For ...
1
vote
2answers
134 views
Invalid type conversion using static_cast, what proper casting should I use?
I have a type definition of typedef vector<Object*> ObjList; I also have a function vector<BigObject*>* ObjectBox::getBigObjectList();. BigObject is inhertied from Object
What I ...
2
votes
1answer
187 views
Pthread and void* attempt to de-reference a generic pointer
When I debug my PRJ I get this error:
args Error: Multiple errors reported.\ Failed to execute MI command: -var-create -
args Error message from debugger back end: Attempt to dereference a ...
0
votes
3answers
94 views
C++ compilation error in static_cast< >
Below is my code
Class A
{
A::A(int num) { }
int num;
};
class B : public A
{
B::B(int num):A(num) { }
};
Class D;
Class C
{
void getNum(A**& somenum) {}
D *dObj;
};
void ...
2
votes
4answers
145 views
Can vtable overhead be avoided using a static_cast?
Here is my problem. I have a base class and a derived class which overrides some methods from the base class. For simplicity consider the following example:
struct base
{
virtual void fn()
...
-1
votes
1answer
121 views
Cast of std::vector of same parameter type but with different constant qualifier
the question is pretty simple, is it in general safe a static cast (or some other cast) from
std::vector< Foo >
to
std::vector< const Foo >
binary-wise, i don't see why the native ...
1
vote
1answer
132 views
static casting from a base class to derived
There's something not clear to me i wish to put under your attention, please check those code snippets:
template< typename DerivedClass >
class construction_management
{
city* this_city;
...
0
votes
1answer
95 views
callback functions and static_cast for wrapping class methods
I'm having some trouble making a callback wrapper class method that needs to be used by a third party library; the JackAudio library.
I have been able to make a wrapper for a JackAudio callback ...
0
votes
3answers
105 views
c++ dangerous casting code
I'm pretty sure this is dangerous code. However, I wanted to check to see if anyone had an idea of what exactly would go wrong.
Suppose I have this class structure:
class A {
protected:
int a;
...
3
votes
3answers
137 views
What is the diference between static_cast<int>(var) and *(int*)&var?
OK so I tried doing this
int b;
char x = 'a';
//Case 1
b = static_cast<int>(x);
std::cout<<"B is : "<<b<<std::endl;
//Case 2
b = *(int*)&x;
...
0
votes
1answer
66 views
Why can't I use a static_cast from one Xalan class to its base class?
Why does the compiler (g++) complain about this line of code?
XalanNode *docElement = static_cast<XalanNode*> (docBuilder_->getDocument()->getDocumentElement());
The error I get ...
0
votes
4answers
280 views
static_cast and RTTI vs dynamic_cast
Please observe the below code. As far as i know, dynamic_cast is slower than static_cast. Because it evaluates the type at runtime.
My doubt here is if we use static_cast with typeid() as below , ...
0
votes
1answer
76 views
Regular cast doesnot throw runtime error
If we see the below code, fun function converts C's object into B's object and calls B' own function. How doesn't it give segm fault. I think this will lead to crash.
My program is not crashed. Can ...
4
votes
5answers
143 views
Questions about static_cast
I've wrote a piece of code, but I am confused with its output:
#include <iostream>
using namespace std;
class B{
public:
virtual void foo() {cout << "B::foo" << endl;}
};
...
5
votes
2answers
240 views
reinterpret_cast error for enum
Why i can't use reinterpret_cast operator for such a cast?
enum Foo { bar, baz };
void foo(Foo)
{
}
int main()
{
// foo(0); // error: invalid conversion from 'int' to 'Foo'
// ...
0
votes
1answer
109 views
reinterpret_cast and null member variables
I'm using reinterpret_cast something like this:
void RunThread (void *myself)
{
(reinterpret_cast<MyClass*>(myself))->Method();
}
Inside Method, most of my member variables (all ...
2
votes
1answer
167 views
static_cast / float / bitset / const weirdness
Just a few hours ago, the following question came up: Variable cannot appear in a constant-expression
Luckily for the OP, the answer provided did solve his problem, but I cannot reproduce the ...
4
votes
2answers
771 views
casting to void* to pass objects to pthread in c++
I'm a little confused about how to pass an object to the pthread_create function. I've found a lot of piecemeal information concerning casting to void*, passing arguments to pthread_create, etc., but ...
1
vote
1answer
103 views
C++ How to set a pointer of type std::vector<Derived*> to object of type std::vector<Base*>
The Background:
I'm building a physics engine in C++ that computes the gravitational evolution of an n-body system in Cartesian space and then translates that into any of a predefined set of ...
10
votes
2answers
169 views
Replacing delete in C++, missinformation
I'm trying to (and have solved) a problem with 16 byte alignment issues with a class that contains SSE optimised members. But what is bugging me is a large portion of the examples I have found online ...
1
vote
2answers
104 views
Why unsafe cast using static_cast operator do not crash?
Consider the following sample code.
#include <iostream>
using namespace std;
class base
{
public:
void func()
{
cout << "base::func()" << endl;
}
...
12
votes
4answers
257 views
Why do I need a reinterpret_cast to convert Fred ** const to void ** const?
I have a const pointer to a pointer to a Fred and I don't understand why a static_cast isn't sufficient.
typedef struct {
int n;
} Fred;
Fred *pFred;
Fred **const ppFred = &pFred;
void ...
8
votes
2answers
269 views
C++ difference between adding const-ness with static_cast and const_cast of “this” object?
As per Scott Meyers, to prevent repetition of code in the const version of a getter and the non-const version of a getter, call the const version of the method from the non-const version: ...
3
votes
1answer
118 views
Why does static_cast still work with null pointers in spite of slicing?
If we use multiple inheritance, slicing will make the addresses to parent objects differ from the address to leaf objects:
struct X {int x};
struct Y {int y};
struct Z : X, Y {int z};
So if we have ...
1
vote
1answer
58 views
dynamic casting of stack object fails
I came across an instance the other day where I had a function taking a pointer to a base type which I needed to cast to a derive type to access some additional functionality. However, dynamic_cast ...
7
votes
3answers
1k views
Why can't I static_cast between char * and unsigned char *?
Apparently the compiler considers them to be unrelated types and hence reinterpret_cast is required. Why is this the rule?
1
vote
3answers
289 views
How to implement static_cast in C++
I am trying to use the GMP number library together with Eigen matrix library. I try to instantiate the template:
Matrix<typename Scalar, int RowsAtCompileTime, int ColsAtCompileTime>
with
...
0
votes
0answers
166 views
Getting First digit in double and storing it in an int C++
Hello im coding in C++ and i need some help with converting a double to an int.
what a need is a way to get the first number from a double ie (3.5945) "3".
and put that number into an int.
I'm using ...
7
votes
2answers
296 views
Conversion operator implemented with static_cast
I ask this question following the issue I raised here.
The point is quite simple. Suppose you have two classes of this kind:
template < class Derived >
class Base {
...
operator const ...
1
vote
3answers
763 views
ambiguous call to overloaded function
I have two functions:
void DoSomething( const tchar* apsValue )
void DoSomething( size_t aiValue )
Now I want to pass '0' as a size_t:
DoSomething(0);
The compiler throws an error: "ambiguous ...
2
votes
2answers
207 views
Why does dynamic_cast exist? [duplicate]
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?
...
8
votes
1answer
570 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 ...
0
votes
0answers
55 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
321 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.
...
1
vote
1answer
118 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;
...
4
votes
4answers
295 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 ...
2
votes
1answer
115 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
3answers
275 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 *> ...
0
votes
1answer
61 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
135 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 : ...
