attrs-1.03 > attrs

名前

attrs - set/get attributes of a subroutine (deprecated)

attrs - サブルーチンの属性を設定/取得する (非推奨)

概要

    sub foo {
        use attrs qw(locked method);
        ...
    }

    @a = attrs::get(\&foo);

説明

NOTE: Use of this pragma is deprecated. Use the syntax

注意: このプラグマの使用は非推奨です。 以下の文法を使って

    sub foo : locked method { }

to declare attributes instead. See also attributes.

属性を宣言してください。 attributes も参照してください。

This pragma lets you set and get attributes for subroutines. Setting attributes takes place at compile time; trying to set invalid attribute names causes a compile-time error. Calling attrs::get on a subroutine reference or name returns its list of attribute names. Notice that attrs::get is not exported. Valid attributes are as follows.

This pragma lets you set and get attributes for subroutines. Setting attributes takes place at compile time; trying to set invalid attribute names causes a compile-time error. Calling attrs::get on a subroutine reference or name returns its list of attribute names. Notice that attrs::get is not exported. Valid attributes are as follows. (TBT)

method

Indicates that the invoking subroutine is a method.

Indicates that the invoking subroutine is a method. (TBT)

locked

Setting this attribute is only meaningful when the subroutine or method is to be called by multiple threads. When set on a method subroutine (i.e. one marked with the method attribute above), perl ensures that any invocation of it implicitly locks its first argument before execution. When set on a non-method subroutine, perl ensures that a lock is taken on the subroutine itself before execution. The semantics of the lock are exactly those of one explicitly taken with the lock operator immediately after the subroutine is entered.

Setting this attribute is only meaningful when the subroutine or method is to be called by multiple threads. When set on a method subroutine (i.e. one marked with the method attribute above), perl ensures that any invocation of it implicitly locks its first argument before execution. When set on a non-method subroutine, perl ensures that a lock is taken on the subroutine itself before execution. The semantics of the lock are exactly those of one explicitly taken with the lock operator immediately after the subroutine is entered. (TBT)