本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- zysnba
- xiangjie88
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- 龙儿筝
- arpenker
- tanling8334
- kaizi1992
- gaojingsong
- xpenxpen
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- Xeden
- zhanjia
- hanbaohong
- java-007
- 喧嚣求静
- kingwell.leng
- mwhgJava
- lich0079
最新文章列表
classInstance
//======jsp========
Ext.onReady(function(){
var v = new Ext.emptyFn();
alert(v.name);
var s = new Ext.yangchunzhi.HumanBeing();
alert("Ext.yangchunzhi.HumanBeing="+s.name ...
尽量不要使用Ext.apply、Ext.override重写Ext组件函数
1、尽量不要使用Ext.apply、Ext.override重写Ext组件函数,实在避免不了这样的写法,需要在统一的位置管理起来,方便以后代码维护;
2、尽量使用extend的方式继承扩展组件,这样的写的好处在于能将组件的功能扩展影响局限在单个组件内部,而不影响到父类组件;
3、尽量避免过度的Ext面板的嵌套定义,过度定义会导致多层深度的嵌套HTMLElement创建,以致严重影响了初始化时 ...
【zk开发】use和apply的区别
use 使用一个组件类,该类必须是当前组件对应接口的实现。 zul页面上的所有标准组件
后台都对应一个默认类, 如果use属性非空,那么zk会创建use属性关联的类的一个
实例替代默认类实例,zul中组件与java class是一一对应的,就像C#4.0中wpf,
xaml中的组件和后台cs是一一对应的
apply
应用一个构建器类,这个类必须是FullComposer或Com ...
Hibernate Criteria Restrictions Apply
/**
* Filename: hibernate→com.happy.test.metadata→AllProperty.java
* Description:
* Copyright: Copyright (c)2011
* Company: Idcorner
* @author: happy qiaolevip@gmail. ...
js继承探讨
全文转载自:http://www.blogjava.net/baoyaer/articles/105481.html
每当我们说到
js
的继承时,在您的脑袋的第一反应就是
prototype
原型机制来实现。但是您是否使用过其他的方法来实现继承呢,或者您是否了解其他
实现方式及各种不同的继承实现机制的优缺点呢?
...
python,apply函数
# apply函数的使用
def function(a,b):
print(a,b)
apply(function,('good','better'))
apply(function,(2,3+6))
apply(function,('cai','quan'))
apply(function,('cai',),{'b':'caiquan'})
apply(function,() ...
call和apply到底有啥用
为什么有这两个函数呢?们到底可以做什么?
mozilla官方的文档让我看到了一点端倪:
1、call函数可以让你从已有的对象中继承一个方法,而不必为新对象写一个新的方法
With call, you can write a method once and then inherit it in another object, without having to rewr ...
extjs源码分析-004(Ext.applyif)
Ext.apply(Ext, {
//这个和Ext.apply的不同在于,Ext.apply会覆盖存在的属性
applyIf : function(o, c){//拷贝所有o没有的属性
if(o){
for(var p in c){
if(!Ext.isDef ...
extjs源码分析-001(Ext.apply)
/**
* Copies all the properties of config to obj.
* @param {Object} 继承的对象
* @param {Object} 新的配置参数--这个值可以为空
* @param {Object} 新的配置参数--这个值可以为空
* @return {Object} returns obj 返回复制值后的对象
* @m ...