PYTHON修饰器的函数式编程 Hello World 下面是代码: 文件名:HELLO.PY 1 2 3 4 5 6 7 8 9 10 11 12 def hello(fn): def wrapper(): print "hello, %s" % fn.__name__ fn() print "g ...
分类:
编程语言 时间:
2017-03-27 15:21:56
阅读次数:
253
概念 工厂模式(Factory Pattern)是最常用的设计模式之一。这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。 在工厂模式中,我们在创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口来指向新创建的对象。 介绍 定义一个创建对象的接口,让其子类自己决定实例化哪 ...
分类:
其他好文 时间:
2017-03-27 10:38:05
阅读次数:
156
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
编程语言 时间:
2017-03-27 00:30:34
阅读次数:
193
2017/3/14 15:36:44 Given a positive integer, output its complement number. The complement strategy is to flip the bits of its binary representation. N ...
分类:
其他好文 时间:
2017-03-27 00:28:27
阅读次数:
191
来源:印象笔记 本杰明?富兰克林被认为是历史上最有智慧并最为务实的人之一。下面的这个清单描述了他最为赞同的13个品质。他觉得他所有的成功和幸福靠的都是这张清单,他希望“我的后代或许会从中受益”。 如果这个清单对只受过两年教育的富兰克林都管用,那你一定能从中受益。 富兰克林13个品质的实践清单 1.节 ...
分类:
其他好文 时间:
2017-03-26 01:18:00
阅读次数:
222
首先需要明白一个原理: 游戏画面(动画)是由一帧帧的图片加载完成的,并且是连续的。也就是说,在一个时间节点上,一定存在一帧图片。不同的是每帧的图片存在的时间不同,如果每帧图片存在的时间比较短,也即单位时间内帧数比较多的话(帧率大),画面越流畅。下面连续的表示图片的流动,图片的宽度表示该图片存在的时间 ...
分类:
编程语言 时间:
2017-03-25 17:33:20
阅读次数:
165
mapper.xml文件 <!-- 添加信息 --> <insert id="insert" parameterType="实体类" useGeneratedKeys="true" keyProperty="id"> <!-- 添加送达大信息的同时获取自动生成的ID的值 --> <selectKey ...
分类:
数据库 时间:
2017-03-25 15:45:44
阅读次数:
488
filter顾名思义,过滤器的意思,在javaweb中的Struts就利用了这种机制去实现视图和业务分离。 这里来配置下自己的Filter来理解下Struts的内在。 在web.xml 中添加下面: 这里意思是只要url的类型是* ,就会调 myfilter, 然后定义myfilter这个类: 这样 ...
分类:
编程语言 时间:
2017-03-24 18:53:16
阅读次数:
127
package com.yd.wmsc.util; import java.beans.BeanInfo; import java.beans.Introspector; import java.beans.PropertyDescriptor; import java.lang.reflect.F ...
分类:
其他好文 时间:
2017-03-24 13:43:02
阅读次数:
181
Create an app with routing config: If you want to generate a new module with routing , you can also do: Define env variable: You can create a custom e ...
分类:
其他好文 时间:
2017-03-24 00:48:41
阅读次数:
188