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

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

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

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

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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

B.23. Dynamic Loading


The basic idea of
dynamic loading is that your program
decides at runtime that it needs more functionality than what's
currently available, so it loads it up and keeps running. You can
always dynamically load Perl code, but it's even more
interesting to dynamically load a
binary
extension.
[419] This is how non-Perl modules are made.

[419]Dynamic loading of binary extensions is
generally available if your system supports that. If it
doesn't, you can compile the extensions statically -- that
is, you can make a Perl binary with the extension built in, ready for
use.


/ 875