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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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



8.190. strict


Pragma for
doing strict error checking within the current block. Can be turned
off by prefixing with no:

use strict 'vars';
...
no strict 'vars';

Provides three kinds of restriction:

strict 'refs'
Generates runtime error if you use any symbolic references.

strict 'subs'
Generates compile-time error if you use a bareword identifier
that's not a predeclared subroutine.

strict 'vars'
Generates compile-time error if you access a variable that
wasn't declared via my,
isn't fully qualified, or wasn't
imported.

use strict by itself (with no import list) is the
most restrictive, causing all possible restrictions to be imposed.



8.189. Storable8.191. subs




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

/ 875