perl – 在Moose属性访问器上输入字符串的最佳方式是什么?

前端之家收集整理的这篇文章主要介绍了perl – 在Moose属性访问器上输入字符串的最佳方式是什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个类,我想在其id属性上应用字符串重载.但是,Moose不允许字符串在属性访问器上重载.例如:
package Foo;
use Moose;
use overload '""' => \&id,fallback => 1;
has 'id' => (
    is => 'ro',isa => 'Int',default => 5,);

package main;
my $foo = Foo->new;
print "$foo\n";

以上会给出错误

You are overwriting a locally defined method (id) with an accessor at C:/perl/site/lib/Moose/Meta/Attribute.pm line 927

我已经尝试了几个选项来解决这个问题:

>标记id为=>裸机,并用我自己的访问器替换:sub id {$_ [0] – > {id}}.但这只是一个黑客.
>使用字符串重载器使用另一种方法,它只是委托回到id:sub to_string {$_ [0] – > id}.

我只是想知道有没有人有更好的做法?

解决方法

use overload '""' => sub {shift->id},fallback => 1;

对我来说很好.

原文链接:https://www.f2er.com/Perl/171592.html

猜你在找的Perl相关文章