First of all,
Gives alias to methods or global variables. Aliases can not be defined within the method body. The aliase of the method keep the current definition of the method, even when methods are overridden. Making aliases for the numbered global variables ($1, $2,...) is prohibited. Overriding the builtin global variables may cause serious problems.
Create an alias for a method or global variable. Cannot be defined within method body. Even if the method is overridden, the alias of that method is maintained. Alias of the numbered global variable ($1, $2,...) is prohibited. Alias of embedded global variables can cause serious problems
Makes new_name
a new copy of the method old_name
. This can be used to retain access to methods that are overridden.
Create a new_name
method that copies the old_name
method. Overrid methods are also accessible.
© 2024 OneMinuteCode. All rights reserved.