Erlang (programming language)/Tutorials/behaviours

From Citizendium
< Erlang (programming language)‎ | Tutorials
Revision as of 17:59, 10 February 2010 by imported>Meg Taylor (spelling: officialy -> officially)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Behaviours (beware the extra 'u' in behaviour for american programmers)

A process is a little bit like an instance of a class in java. Behaviours in erlang are very similar to interfaces in java. A set of call back functions is required and used. Using only functions works well with erlang because there are no actual member variables in erlang processes. Processes can pass variables to themselves recursively, but they are not officially member variables.