Glossary

`Self`

An implicit parameter available inside every method, referring to the object instance on which the method was called. Analogous to `this` in C++, Java, and C#. Usually implicit but sometimes needed explicitly to disambiguate. (Ch. 16)

Learn More

Related Terms