翻訳と辞書
Words near each other
・ Automated storage and retrieval system
・ Automated system recovery
・ Automated tank cleaning machine
・ Automated Targeting System
・ Automated telephone survey
・ Automated teller machine
・ Automated Testing Framework
・ Automated theorem proving
・ Automated tiered storage
・ Automated tissue image analysis
・ Autolink
・ AutoLISP
・ Autolite
・ Autolite 4300 carburetor
・ Autoliv
Autoload
・ Autoloader
・ Autoloader (disambiguation)
・ Autoloading
・ Autologic
・ Autological word
・ Autologous blood injection
・ Autologous chondrocyte implantation
・ Autologous Conditioned Plasma
・ Autologous endometrial coculture
・ Autologous immune enhancement therapy
・ Autologous lymphocyte
・ Autologous matrix-induced chondrogenesis
・ Autologous patient-specific tumor antigen response
・ Autologous stem-cell transplantation


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Autoload : ウィキペディア英語版
Autoload

In computer programming, autoloading is the capability of loading and linking portions of a program from mass storage automatically when needed, so that the programmer is not required to define or include those portions of the program explicitly. Many high-level programming languages include autoload capabilities, which sacrifice some run-time speed for ease of coding and speed of initial compilation/linking.
Typical autoload systems intercept procedure calls to undefined subroutines. The autoloader searches through a path of directories in the computer's file system, to find a file containing source or object code that defines the subroutine. The autoloader then loads and links the file, and hands control back to the main program so that the subroutine gets executed as if it had already been defined and linked before the call.
Many interactive and high-level languages operate in this way. For example, IDL includes a primitive path searcher, and Perl allows individual modules to determine how and whether autoloading should occur. The Unix shell may be said to consist almost entirely of an autoloader (program), as its main job is to search a path of directories to load and execute command files. In PHP 5, autoload functionality is triggered when referencing an undefined class. One or more autoload functions—implemented as the __autoload magic function or any function registered to the SPL autoload stack—is called and given the opportunity to define the class, usually by loading the file it is defined in.
== PHP ==

spl_autoload_register(function ($class) );


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Autoload」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.