Previous: CC++ Computations Up: Processor Objects Next: Pitfalls

The ::this Pointer

Every processor object member, whether implicit or explicit, has a pointer to the processor object on which it is being invoked. This pointer is analogous to the C++ this pointer. In CC++, ::this is a pointer to the current processor object. In the current implementation, however, this syntax is replaced by THIS(type) where type is the type of the current processor object.

paolo@cs.caltech.edu