The typecast-operator tag has no wiki summary.
6
votes
2answers
457 views
What's the difference between casting using (Object as TClass) and TClass(Object)
Got an issue where MyObj.classnameis(TMyClass.classname) is true and TMyClass(MyObj) works but (MyObj as TMyclass).doSomething throws a conversion error.
I don't really want any help with that junk, ...
5
votes
1answer
105 views
new to C programming on linux, stuck at typecasting
I am pretty new to programming on linux. I am trying to implement a msg queue in one of my assignments. But I am not able to do it. The code is as follows :
#include <stdio.h>
#include ...
5
votes
4answers
141 views
Why constructor is not called for given casting operator?
struct A {};
struct B
{
B (A* pA) {}
B& operator = (A* pA) { return *this; }
};
template<typename T>
struct Wrap
{
T *x;
operator T* () { return x; }
};
int main ()
{
...
2
votes
1answer
142 views
Integer() type cast doesn't work on Delphi 64-bit
I have the following piece of code:
inc(integer(DestPixel), DestDelta); //DestPixel: PColorRGB; DestDelta: integer;
This works fine on 32-bit platforms. If I change the platform to 64-bit in the ...
2
votes
1answer
72 views
Why can't I use the cast operator in comparisions?
Assume the following code:
#include <string>
#include <iostream>
using namespace std;
struct A
{
operator int()
{
return 123;
}
operator string()
{
...
2
votes
5answers
87 views
about c++ cast question
#include <stdlib.h>
int int_sorter( const void *first_arg, const void *second_arg )
{
int first = *(int*)first_arg;
int second = *(int*)second_arg;
if ( first < second )
{
...
1
vote
2answers
40 views
“invalid cast from type 'const myClass' to type 'int'”, how can I make it valid?
I am getting an error about the return statement (or cast) in the final function in the following extract from a library header
///////////////////////////////////////////////////////////
// class ...
1
vote
2answers
166 views
cast operator to base class within a thin wrapper derived class
I have a derived class that's a very thin wrapper around a base class. Basically, I have a class that has two ways that it can be compared depending on how you interpret it so I created a new class ...
0
votes
2answers
30 views
Problem with overloading typecasts (C++)
I've built a little class representing a decimal number, called Complex.
I want to be able to cast it to double, so here's my code
Complex.h
public:
operator double();
Complext.cpp
...
0
votes
1answer
126 views
Type cast operator overload of HWND returns trash instead of expected member value
I defined a class that I want to use for building a window. One of the fields is hWnd and when the member function create() is called the HWND to the created window is stored there. I overloaded the ...
0
votes
3answers
128 views
Is there a difference between int(floatvar) and (int)floatvar? [closed]
Possible Duplicate:
C++: What's the difference between function(myVar) and (function)myVar ?
I have seen and used both variants of these typecasts:
int(floatvar)
(int)floatvar
Is ...
0
votes
3answers
156 views
no typecast operator for class in c#? [closed]
typecast operator is cool in c++, no such thing in c#?
c++ code:
class A
{
int dat;
public:
A(int num = 0 ) : dat(num) {}
operator int() {return dat;} // cast to int
};