referance_subroutines
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
referance_subroutines [2012/02/07 18:58] – created k2patel | referance_subroutines [2020/08/10 02:35] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 8: | Line 8: | ||
The following table discusses the referencing and de-referencing of variables. Note that in the case of lists and hashes, you reference and dereference the list or hash as a whole, not individual elements (at least not for the purposes of this discussion). | The following table discusses the referencing and de-referencing of variables. Note that in the case of lists and hashes, you reference and dereference the list or hash as a whole, not individual elements (at least not for the purposes of this discussion). | ||
+ | |||
+ | ^ Variable ^ Instantiating the scalar ^ Instantiating a reference to it ^ Referencing it ^ Dereferencing it ^ Accessing an element ^ | ||
+ | | $scalar | $scalar = " | ||
+ | | @list | @list = (" | ||
+ | | %hash | %hash = (" | ||
+ | | FILE | | | $ref = \*FILE | {$ref} or scalar < | ||
+ | |||
- | |Variable|Instantiating | ||
- | the scalar|Instantiating a | ||
- | reference to it|Referencing it|Dereferencing it|Accessing an element| | ||
- | |$scalar|$scalar = " | ||
- | ${$ref}|N/ | ||
- | |@list|@list = (" | ||
- | $ref-> | ||
- | |%hash|%hash = (" | ||
- | " | ||
- | " | ||
- | $ref-> | ||
- | |FILE|||$ref = \*FILE|{$ref} or scalar < | ||
These principles are demonstrated in the source code below. Note the following anomolies: | These principles are demonstrated in the source code below. Note the following anomolies: |
referance_subroutines.1328641106.txt.gz · Last modified: 2020/08/10 02:29 (external edit)