vote up 0 vote down star

I have a parameter like this:

rightOperand:(const NSDecimal*)rightOperand

how could I provide a value that represents "nothing" or "empty"? would that be void? i.e.

[myObj rightOperand:void];

or something different? Or is that impossible for structs?

flag

67% accept rate

1 Answer

vote up 2 vote down check

A null C pointer is simply NULL.

link|flag
Note that while this works for the function he describes (NSDecimal-handling functions), it may cause a crash in other similar functions due to the dereferencing of a NULL pointer. – Brad Larson Aug 27 at 13:00
Yeah, it really depends on what the documentation says/how the function is written. – Wevah Aug 27 at 20:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.