Can assign a pointer to a value on declaration? Something like this:
int * p = &(1000)
|
|
Can assign a pointer to a value on declaration? Something like this:
|
||||||
|
|
|
Yes, you can initialize pointers to a value on declaration, however you can't do:
& is the address of operator and you can't apply that to a constant (although if you could, that would be interesting). Try using another variable:
or type-casting:
|
||||||||
|
|
|
There are two things not clear in the question to me. Do you want to set the pointer to a specific value (i.e address), or do you want to make the pointer point to some specific variable? In the latter case, you can just use the address-of operator. The value of the pointer is then set to the address of
Note: What follows is evil changing of the pointer's value manually. If you don't know whether you want to do that, you don't want to do it. In the former case (i.e setting to some specific, given address), you can't just do
Since the compiler won't take the int and interpret it as an address. You will have to tell the compiler it should do that explicitly:
Now, the pointer will reference some integer (hopefully) at address 1000. Note that the result is implementation defined. But nevertheless, that are the semantics and that is the way you tell the compiler about it. Update: The committee fixed the weird behavior of |
|||
|
|
|
|
Um. I don't think you can take a non-const address of a constant like that. but this works:
or this:
|
||
|
|
|
|
What about:
Tested and works. ;-) |
||
|
|
|
Yes. However if its a class member you have to do it in the constuctor. If it is a static member, you have to do it where it is defined, not where it is declared (unless they are the same place of course). Assigning 0 to a member where it is declared is used to tell the compiler that it is a virtual member. |
||
|
|