- 博客(9)
- 收藏
- 关注
原创 js闭包
//JS闭包就是能够读取其他函数内部变量的函数。//由于在Javascript语言中,只有函数内部的子函数才能读取局部变量,因此可以把闭包简单理解成“定义在//一个函数内部的函数”。所以,在本质上,闭包就是将函数内部和函数外部连接起来的一座桥梁。 我们知道所有的变量,如果不加上var关键字,则默认的会添加到全局对象的属性上去,这样的临时变量加入全局对象有很多坏处, ...
2014-05-24 16:58:57 104
原创 spring 在servlet或者JSP中获取bean
在servlet中private ApplicationContext ctx; public void init() throws ServletException { ctx = WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());Bean bean= ...
2014-05-24 16:27:24 223
原创 spring三种注入方式
spring 三种注入方式分别是(1)接口注入(2)构造方法注入(3)set方法注入; (1) (2)<bean id="springTest2" class="com.spring.test.SpringTest2"></bean> <bean id="springTest" class="com.spring.tes.
2014-05-24 16:22:06 156
原创 spring web.xml中加载Spring容器
在web.xml中加载Spring容器<listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> <context-param>...
2014-05-24 16:15:43 301
原创 ArrayList Vertor LinkedList之间的区别
ArrayList 内部是通过数组实现的,适合随机查找和遍历 Vertor 功能上和ArrayList一样,也是通过数据实现的,但它是线程安全的,需要的花费比较大,一般情况不使用。 LinkedList 通过链表结构存储数据,适合数据的动态插入和删除,随机访问和遍历的速度比较慢 ...
2014-05-10 15:26:07 174
原创 去掉输入框的边框
<input name=username type=text maxlength=20 style="border:0;background:transparent;" >
2014-05-10 14:56:01 200
原创 Transition类使用方法
<?xml version="1.0" ?><!-- Simple example to demonstrate the Transition class. --><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <!-- Define one view state...
2014-05-10 11:45:50 587
原创 递归算法小例子
public class Test2{ public static void main(String[] args) { for(int i=1;i<10;i++) System.out.println(fn(i)); } //递归过程一般通过函数或子过程来实现。递归方法:在函数或子过程的内部,直接或者间接地调//用自己的算法。 s...
2014-05-10 11:36:45 140
原创 冒泡算法
/*冒泡排序算法的运作如下:(从后往前)比较相邻的元素。如果第一个比第二个大,就交换他们两个。对每一对相邻元素作同样的工作,从开始第一对到结尾的最后一对。在这一点,最后的元素应该会是最大的数。针对所有的元素重复以上的步骤,除了最后一个。持续每次对越来越少的元素重复上面的步骤,直到没有任何一对数字需要比较。*/public class OrderbyArray { st...
2014-01-13 22:20:26 91
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人