摘要:
首先抽象出一个线性表抽象类(包括主要的增删操作) public abstract class MyAbstractList<E> { public abstract void add(E t); public abstract void add(int index,E t); public abst 阅读全文
posted @ 2017-04-23 16:20
yfceshi
阅读(329)
评论(0)
推荐(0)
摘要:
程序猿都非常懒。你懂的! 生命的绝唱来机仅仅争朝夕,如诗的年华更需惜时如金。不要让今天的懈怠成为一生的痛。 每天都在进步。近期在学习jquery mobile开发。使用的button,绑定事件,和大家一起学习。一起分享! 直接上代码: <!DOCTYPE html> <html> <head> <l 阅读全文
posted @ 2017-04-23 13:55
yfceshi
阅读(435)
评论(0)
推荐(0)
摘要:
Histeq Enhance contrast using histogram equalization 该函数通过直方图均衡化来添加对照度 Syntax J = histeq(I,hgram) Description Histeq enhances the contrast of images b 阅读全文
posted @ 2017-04-23 12:41
yfceshi
阅读(11134)
评论(0)
推荐(1)
摘要:
jdbc防止sql注入 jdbc防止sql注入-PreparedStatement public List getUserByName(String name,String password){ ResultSet rs = null; PreparedStatement stat = null; 阅读全文
posted @ 2017-04-23 12:00
yfceshi
阅读(258)
评论(0)
推荐(0)
摘要:
模板法模式:定义一个操作中的算法骨架。而将一些步骤延迟到子类中。 依照《headfirst 设计模式》的样例。煮茶和煮咖啡的算法框架(流程)是一样的。仅仅是有些算法的实现是不一样的,有些是一样的。 我们能够将共同的算法框架封装为一个虚基类,将同样的算法声明为不可覆盖的(static)。不同的算法声明 阅读全文
posted @ 2017-04-23 10:23
yfceshi
阅读(955)
评论(0)
推荐(0)
摘要:
Camel支持一种更复杂的异步的处理模型,异步处理器实现一个继承自Processor接口的AsyncProcessor接口,使用异步Processor的长处: a.异步Processor不会因等待堵塞调用而耗尽线程。这样在处理相同工作量的情况下,通过降低线程的数量能够添加系统的伸缩性 b.使用异步P 阅读全文
posted @ 2017-04-23 09:09
yfceshi
阅读(751)
评论(0)
推荐(0)

浙公网安备 33010602011771号