Re: Structure Containing Structure: question about parentheses [message #55247 is a reply to message #55243] |
Thu, 09 August 2007 11:45   |
JD Smith
Messages: 850 Registered: December 1999
|
Senior Member |
|
|
On Thu, 09 Aug 2007 08:36:34 -0700, larkn10 wrote:
> Hi All,
>
> I have a question about using parentheses with structures that are
> members of a structure. I include a sample program below that
> demonstrates the behaviors.
>
> Basically I have no problem if I run the command
>
> state.str.c = 50
>
> But if I run the command
>
> (state.str).c = 50
>
> then I get the error:
>
> Attempt to store into an expression: Structure reference.
> Execution halted at: TESTSTRUCT 32 C:\teststruct.pro
> $MAIN$
>
>
> Can someone explain this behavior to me?
This is the exact analog of being unable to pass a structure member by
reference. (state.str) creates a temporary variable, a copy of the
str structure inside of state. If you assign to that, IDL is smart
enough to realize you don't want to change the temporary copy, but the
real one, as if you hadn't written the parens. Once you add a further
structure dereference, however, IDL stops saving you from yourself.
Since you can't assign to temporary variables, you get the error.
Not only is the above paren set superfluous, if it worked, it would be
much slower, since it creates an unnecessary copy of the structure
directly. Since it does work when used for anything but assignment,
you should avoid it.
Parentheses are useful and needed when you have nested pointers inside
of structures; see the operator precedence tutorial.
JD
|
|
|