Java class loader: Difference between revisions

Content deleted Content added
Luckas-bot (talk | contribs)
m r2.7.1) (Robot: Adding hu:Java Classloader
Line 42:
 
==User-defined class loaders==
The Java class loader is written in Java. It is therefore possible to create your own class loader without understanding the finer details of the Java Virtual Machine. Every Java class loader has a parent class loader, defined when a new class loader is instantiated or set to the virtual machines system default class loader.
By default, all user classes are loaded by the default system class loader, but it is possible to replace it by a user and even to chain class loaders as desired.{{Clarify|date=January 2011}}
 
This makes it possible (for example):