in reply to Re^7: How will you use state declared variables in Perl6?
in thread How will you use state declared variables in Perl6?
Why should it have to "segregate", unless you have a busted inheritance hierarchy that doesn't actually represent ISA relationships?
I was trying to think of a use for state. The potential use I thought of was counting instances of a class--Probably better served by a Class variable anyway--but it could be used that way until inheritance is involved at which point it gets iffy whether instances of the subclass are instances of the class. But forget that as there are better ways of doing it.
That leaves the question, what is a good use for state vars, which is probably the question Limbic~Region was asking in the first place.
My summation of the information you provided in this thread is that state vars are basically the same as closures, except that you can declare their scope from within the scope they are to be closed over, rather than having to declare them outside that scope in order for the sub(method/submethod) to close over them.
Is that a reasonable definition?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: How will you use state declared variables in Perl6?
by TimToady (Parson) on Jul 08, 2005 at 23:34 UTC |