Here's a quick-and-dirty sample that illustrates foreign inheritance using Object::InsideOut v1.18:
Other points of interest:use strict; use warnings; # Borg is a foreign hash-based class package Borg; { # A regular hash-based constructor sub new { return (bless({}, shift)); } # A 'get' accessor sub get_borg { my ($self, $data) = @_; return ($self->{$data}); } # A 'put' accessor sub set_borg { my ($self, $key, $value) = @_; $self->{$key} = $value; } # A class method sub assimilate { return ('Resistance is futile'); } } # Foo is an Object::InsideOut class that inherits from class Borg package Foo; { use Object::InsideOut qw(Borg); # A data field with standard 'get_/set_' accessors my @foo :Field('Standard'=>'foo'); # Our class's 'contructor' sub init :Init { my ($self, $args) = @_; # Create a Borg object and inherit from it my $borg = Borg->new(); $self->inherit($borg); } # A class method sub comment { return ('I have no comment to make at this time'); } } package main; # Inheritance works on class m +ethods print(Foo->comment(), "\n"); # Call a 'native' class meth +od print(Foo->assimilate(), "\n"); # Call a 'foreign' class met +hod my $obj = Foo->new(); # Create our object $obj->set_foo('I like foo'); # Set data inside our object print($obj->get_foo(), "\n"); # Get data from our object $obj->set_borg('ID' => 'I am 5-of-7'); # Set data inside inherited ob +ject print($obj->get_borg('ID'), "\n"); # Get data from inherited obje +ct
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Inside-out objects inheriting from hash-based classes
by xdg (Monsignor) on Dec 07, 2005 at 19:04 UTC | |
by jdhedden (Deacon) on Dec 07, 2005 at 19:35 UTC | |
by xdg (Monsignor) on Dec 07, 2005 at 21:52 UTC | |
by jdhedden (Deacon) on Dec 08, 2005 at 05:27 UTC | |
|
Re: Inside-out objects inheriting from hash-based classes
by ghenry (Vicar) on Dec 08, 2005 at 08:47 UTC |