I want to sort the keys of a hash stored within an object. If I create a user defined cmp function for my sort, it only gets the values $a and $b. Within this cmp function how do I access the $self of the object?
# object
$self={
hash_ref=>{item1=>'value1',item2=>'value2'}
}
# cmp funtion
sub byvalue
{
#instead of
$a<=>$b;
#something like
$self->{hash_ref}->{$a}<=>$self->{hash_ref}->{$b};
#how do I access $self in this function?
}
# object's sort function
sub sort_hash_ref_keys_by_value
{
my $self=shift;
my @keys=sort byvalue keys(%{$self->{hash_ref}});
}
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|