As robby_dobby said, it's not unusual for blessed objects to have other blessed objects as members.
What is unusual is the package name that the outer object is blessed into: 'LocalLB::ObjectStatus[]'. It's not technically a problem, but quite weird to put square brackets in a package name.
use 5.010; use strict qw(vars subs); use warnings; *{"Foo[]::hello"} = sub { say "Hello" }; my $obj = bless({}, "Foo[]"); $obj->hello;
In reply to Re: Object Access Issue
by tobyink
in thread Object Access Issue
by Darren123
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |