in reply to Moose 'clone' Constructor
#! /usr/bin/perl use warnings; use strict; use feature qw{ say }; { package MyObj; use Moose; has fh => (is => 'ro', builder => '_build_fh'); sub _build_fh { my ($self) = @_; open my $fh, '>', "/tmp/$self" or die $!; return $fh } sub DEMOLISH { my ($self) = @_; close $self->fh; unlink "/tmp/$self"; } } my $o = 'MyObj'->new; { my $c = $o->meta->clone_object($o); } say { $o->fh } "Hello world!"; # say() on closed filehandle $fh
($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Moose 'clone' Constructor
by kcott (Archbishop) on Jul 05, 2018 at 03:27 UTC |