Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^5: Doubt about fly-weight objects.

by adrianh (Chancellor)
on May 19, 2005 at 08:13 UTC ( [id://458547]=note: print w/replies, xml ) Need Help??


in reply to Re^4: Doubt about fly-weight objects.
in thread Doubt about fly-weight objects.

Your example, though, actually makes fly-weights take up way more than twice as much space (I think).

You're right.

So, that's how I interpretted the situation you were laying out. I assume I just misintrpretted it... but how exactly did I?

The GoF example was dealing with a WYSIWYG word processor, so "character" was more complicated than a single byte.

For example: A naive implementation of a bitmapped character in a word processor might (in Perl) look something like this:

my $char = bless { char => 'e', face => 'Times', size => '12pt', bitmap => '... some binary data ...', row => 12, column => 22, }, 'BitmapCharacter'; ... $char->render # draw a 12pt Times letter 'e' at row 12, column 22

So if we have a a bit of text that says "errol eats enough eggs everyday" then we have 6 x 'e' BitmapCharacter objects that only differ by their row and column attributes.

In the GoF language we say that the row and column attributes are extrinsic state - they're dependent on the characters context (as opposed to intrinsic state which is context independent).

The GoF Flyweight pattern is to rip out the extrinsic state from the object so we'd have something like:

my $char = bless { char => 'e', face => 'Times', size => '12pt', bitmap => '... some binary data ...', }, 'BitmapCharacter'; ... $char->render( 12, 22 ) # draw a 12pt Times letter 'e' at row 12, colu +mn 22

So the container now has to pass the extrinsic state and we can use the same object for each occurance of each letter - saving lots of space.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://458547]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2024-04-16 21:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found