Spec-Zone .ru
спецификации, руководства, описания, API
Spec-Zone .ru
спецификации, руководства, описания, API
Библиотека разработчика Mac Разработчик
Поиск

 

Эта страница руководства для  версии 10.9 Mac OS X

Если Вы выполняете различную версию  Mac OS X, просматриваете документацию локально:

Читать страницы руководства

Страницы руководства предназначаются как справочник для людей, уже понимающих технологию.

  • Чтобы изучить, как руководство организовано или узнать о синтаксисе команды, прочитайте страницу руководства для страниц справочника (5).

  • Для получения дополнительной информации об этой технологии, ищите другую документацию в Библиотеке Разработчика Apple.

  • Для получения общей информации о записи сценариев оболочки, считайте Shell, Пишущий сценарий Учебника для начинающих.



Moose::Object(3)                     User Contributed Perl Documentation                    Moose::Object(3)



NAME
       Moose::Object - The base object for Moose

VERSION
       version 2.0205

DESCRIPTION
       This class is the default base class for all Moose-using classes. When you "use Moose" in this class,
       your class will inherit from this class.

       It provides a default constructor and destructor, which run all of the "BUILD" and "DEMOLISH" methods
       in the inheritance hierarchy, respectively.

       You don't actually need to inherit from this in order to use Moose, but it makes it easier to take
       advantage of all of Moose's features.

METHODS
       Moose::Object->new(%params|$params)
           This method calls "$class->BUILDARGS(@_)", and then creates a new instance of the appropriate
           class. Once the instance is created, it calls "$instance->BUILD($params)" for each "BUILD" method
           in the inheritance hierarchy.

       Moose::Object->BUILDARGS(%params|$params)
           The default implementation of this method accepts a hash or hash reference of named parameters.
           If it receives a single argument that isn't a hash reference it throws an error.

           You can override this method in your class to handle other types of options passed to the
           constructor.

           This method should always return a hash reference of named options.

       $object->does($role_name)
           This returns true if the object does the given role.

       $object->DOES($class_or_role_name)
           This is a a Moose role-aware implementation of "DOES" in UNIVERSAL.

           This is effectively the same as writing:

             $object->does($name) || $object->isa($name)

           This method will work with Perl 5.8, which did not implement "UNIVERSAL::DOES".

       $object->dump($maxdepth)
           This is a handy utility for "Data::Dumper"ing an object. By default, the maximum depth is 1, to
           avoid making a mess.

       $object->DESTROY
           A default destructor is provided, which calls "$instance->DEMOLISH($in_global_destruction)" for
           each "DEMOLISH" method in the inheritance hierarchy.

BUGS
       See "BUGS" in Moose for details on reporting bugs.

AUTHOR
       Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE
       This software is copyright (c) 2011 by Infinity Interactive, Inc..

       This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
       programming language system itself.



perl v5.12.5                                     2011-09-06                                 Moose::Object(3)

Сообщение о проблемах

Способ сообщить о проблеме с этой страницей руководства зависит от типа проблемы:

Ошибки содержания
Ошибки отчета в содержании этой документации к проекту Perl. (См. perlbug (1) для инструкций представления.)
Отчеты об ошибках
Сообщите об ошибках в функциональности описанного инструмента или API к Apple через Генератор отчетов Ошибки и к проекту Perl, использующему perlbug (1).
Форматирование проблем
Отчет, форматирующий ошибки в интерактивной версии этих страниц со ссылками на отзыв ниже.