self/1


Description

self(Self)

Returns the object that has received the message under processing. Note that this predicate implies an instantiation between its argument and the corresponding implicit context argument in the predicate containing the call. This instantiation occurs at the clause head, not at the clause body.

Template and modes

self(?object_identifier)

Errors

(none)

Examples

test :-
    self(Self),
    write('executing a method in behalf of '),
    writeq(Self), nl.

Previous | Next | Table of Contents | Bibliography | Glossary

Last updated on: March 4, 2003