Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



8.119. Hash::Util


Offers a
selection of general-utility hash subroutines. Starting with Perl
5.8, hashes allow you to restrict access to the data
that's stored in the hash. Individual keys can be
locked so they cannot be deleted, nor can their values be changed.
Hash::Util is largely intended to replace the deprecated
pseudo-hashes.

For example:

#!/usr/local/bin/perl -w
%hash = (foo => 42, bar => 23);
lock_keys(%hash);
# Now, try to set %hash{'something'}
while(my($key, $value) = each %hash) {
print "$key -> $value\n";
}
unlock_keys(%hash);

You can lock specific values as follows:

#!/usr/local/bin/perl -w
%hash = (foo => 42, bar => 23);
lock_key(%hash, 'foo');
# Now, try to set 'foo' and see what happens
unlock_keys(%hash, 'foo');



8.118. Getopt::Std8.120. I18N::Collate




Copyright © 2002 O'Reilly & Associates. All rights reserved.

/ 875