`
zsjg13
  • 浏览: 142444 次
  • 性别: Icon_minigender_1
  • 来自: 安徽
社区版块
存档分类
最新评论

Dynamic class loading

阅读更多

The dynamic class loading system is another new feature for Ext JS 4. It also provides an integrated

dependency management system.

 

This new feature is optional and you should avoid using it in production,though it is very useful for the

development environment. We are going to learn why it is so useful:

 

In previous versions of Ext JS, if you wanted to use the following code, you had to wait until the entire

framework was loaded,correct? If you tried to use it before the framework was loaded, you would

probably get an error:

var win = new Ext.Window({

    title: 'Hello!',

    width: 100,

    height: 50

});

win.show();

 

This behavior changes in Ext JS 4. We can ask Ext JS to load the classes that we need to use and then

call a function when it is finished loading. For example:

Ext.require('Ext.Window', function() {

// 之前的代码放这里

});

 

When we use Ext.require, we are telling Ext JS we need Ext.Window before calling a function.The framework will also resolve any dependencies that the loaded class has.

 

To use this feature, you have to use Ext.define and define the dependencies in the code using two

new class properties:

(1)requires: This declares the class dependencies required for a class to work.These classes are going

to be loaded before the current class gets instantiated.

(2)uses: This declares the optional class dependencies, but is not required. These classes do not have

to be availabel before the current class gets instantiated.

 

The Loader is recursive. If any class has dependencies that are not yet loaded, it will keep loading all

the required classes until all of them are ready. All these dependencies are managed internally. This

means you do not need to manage all those script tags in the HTML page,because the class loader

will to it for you. This kind of flexibility is very useful in the development environment, when this is

more important than page speed.

 

........................待续

 

分享到:
评论

相关推荐

    Dynamic Class Loading in the JavaTM Virtual Machine

    Class loaders are a powerful mechanism for dynamically loading software components on the Java platform. They are unusual in supporting all of the following features: ...class loading.

    Dynamic loading class in the java virtual machine

    Dynamic loading class in the java virtual machine

    Dynamic Class Loading in the Java Virtual Machine

    protected Class<?> findClass(String name) throws ClassNotFoundException { byte[] classData = loadClassData(name); return defineClass(name, classData, 0, classData.length); } private byte[] ...

    C++ Dynamic Class Loader-开源

    在C++编程中,动态类加载(Dynamic Class Loading)是一种高级技术,允许程序在运行时加载未知或在编译时不可用的类。这通常用于实现插件系统、模块化设计或者灵活的软件架构。开源的C++动态类加载机制为开发者提供...

    OSGi Starter

    4. **Dynamic Class Loading**: OSGi supports dynamic class loading, which means that classes can be loaded, unloaded, and updated while the system is running. 5. **Declarative Services**: This is a ...

    项目运行期间热插拔接口实现类

    动态类加载(Dynamic Class Loading)是实现这一目标的关键技术。Java中的`ClassLoader`类就是为此目的设计的。`ClassLoader`负责将类的`.class`文件加载到JVM中,使它们成为运行时可操作的对象。`...

    Java ClassLoader原理

    本文探讨了Java虚拟机(JVM)中的一个重要特性:动态类加载(Dynamic Class Loading)。这一机制为Java平台提供了强大的能力,允许在运行时安装软件组件,例如从网络下载Applet并加载到Web浏览器中。尽管其他系统也...

    android-pluginmgrAndroid源代码

    3. **动态类加载(Dynamic Class Loading)**:android-pluginmgr利用了Dalvik/ART虚拟机的类加载机制,实现了在运行时动态加载和卸载插件中的类,避免了对主应用代码的修改。 4. **资源映射(Resource Mapping)**...

    objc4-runtime:objc源版本709.1

    4. **动态加载类(Dynamic Class Loading)**:Runtime允许在程序运行时加载或卸载类,增强了代码的可扩展性。 5. **KVC(Key-Value Coding)和KVO(Key-Value Observing)**:Runtime提供了键值编码和键值观察机制...

    angularPOC3-dynamicLoading

    本文将深入探讨"angularPOC3-dynamicLoading"项目,它是一个关于Angular动态加载组件的实践示例。 **1. 动态组件的概念** 在Angular中,动态组件是指不在初始编译阶段定义,而是在运行时根据业务逻辑创建和销毁的...

    java热加载Class文件.zip

    3. **JVM ClassLoading机制**: 要实现热加载,必须理解JVM的类加载机制。Java程序中的类由类加载器负责加载,加载过程包括加载、验证、准备、解析和初始化五个阶段。热加载技术通常会干预这个过程,使得已经加载的类...

    export class from dll c++

    在C++编程中,动态链接库(Dynamic Link Library,简称DLL)是一种非常有用的工具,它允许我们编写可重用的代码块,并将这些代码块作为单独的模块加载到应用程序中。这对于实现模块化编程、共享资源以及提高软件性能...

    DevExpress.XtraTreeList.Net.v1.7.0.Incl.Source

    With industry-leading innovations such as full XP Theme support, Dynamic Data Loading for ultra fast display of information, and unrivaled summary and customization capabilities, the XtraTreelist ...

    深入java虚拟机(inside the java virtual machine)

    Class Loading, Linking, and Initialization Loading Verification Preparation Resolution Initialization The Class Initialization Method Active versus Passive Use The Lifetime of an Object Class...

    JAVA类加载

    在Java中,类的加载分为**预先加载(pre-loading)**和**依需求加载(load-on-demand)**两种策略。预先加载主要针对Java运行环境中频繁使用的基础类,如`rt.jar`文件中的所有`.class`文件,它们在程序启动时即被...

    ObjCRuntimeGuide

    depth look into how Objective-C programs interact with this runtime environment, particularly focusing on the `NSObject` class and various paradigms for dynamic loading and message forwarding. ...

    Visual C++ 编程资源大全(英文源码 DLL)

    07.zip Handling VB strings (as part of an array of UDT) VB的串句柄(5KB)<END><br>8,08.zip Class for Dynamic DLL Loading 动态装入DLL的一个类(6KB)<END><br>9,pop3.zip CPop3Connection - an ...

    java动态性.rar

    2. 运行时类加载(Runtime Class Loading):Java允许在程序运行时加载新的类,这是通过ClassLoader实现的。开发者可以通过自定义ClassLoader来实现动态加载特定的类文件,这在插件系统或者模块化系统中非常常见。 ...

Global site tag (gtag.js) - Google Analytics