Skip to content

Instantly share code, notes, and snippets.

@koorchik
Created October 25, 2011 17:12
Show Gist options
  • Save koorchik/1313531 to your computer and use it in GitHub Desktop.
Save koorchik/1313531 to your computer and use it in GitHub Desktop.
Приватные методы
# Private accessors/methods
# Помещаем ссылку на локальную анонимную функцию в локальную переменную
my $name = sub {
my $self = shift;
...
}
# Используем как обыкновенный метод, но доступен оно только внутри класса
$self->$name();
$self->$name('viktor');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment