The casts tag has no wiki summary.
8
votes
2answers
5k views
cast of Objective-C pointer type 'NSString *' to C pointer type 'CFStringRef' (aka 'const struct __CFString *') requires a bridged cast
When converting an Objective-C program to a Objective-C ARC, I get the error:
"cast of Objective-C pointer type 'NSString *' to C pointer type 'CFStringRef' (aka 'const struct __CFString *') requires ...
5
votes
2answers
78 views
Please Explain The Meaning of Following Cast [closed]
Possible Duplicate:
Weird use of void
I was reading C code and came across the following. Can somebody please explain what this does.
static int do_spawn(const char *filename)
{
...
4
votes
4answers
291 views
What is wrong with this C cast
I came across this in an IRC channel yesterday and didn't understand why it was bad behavior.
#include <stdio.h>
int main(void)
{
char x[sizeof(int)] = { '\0' }; int *y = (int *) x;
...
3
votes
4answers
154 views
What are the rules for multiple casts in C#?
I have this code snippet and I would like to know why is the output as written in comment below:
interface I {
void m1();
void m2();
void m3();
}
class A : I {
public ...
3
votes
3answers
562 views
How does function-style cast syntax work
I guess I am a bit puzzled by the syntax. What does the following mean?
typedef char *PChar;
hopeItWorks = PChar( 0x00ff0000 );