上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: package de.bvb.test3; /** * 建造者模式: 假如一个类有4个字段,每个字段或者每几个字段的组合都需要设置为构造函数,构造函数就比较麻烦 * 而且如果再加一个字段进去也不好拓展. * 就需要使用到建造者模式了 * * 实例: android中的dialog, okHttp以及Retrofit * * 调用代码: * Person p1 = new ... 阅读全文
posted @ 2017-01-04 14:43 MarcoReus 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 测试代码与结果 参考: http://www.cnblogs.com/mengdd/archive/2013/02/07/2908929.html http://www.cnblogs.com/mengdd/archive/2013/02/07/2908929.html 阅读全文
posted @ 2016-12-30 16:24 MarcoReus 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 程序执行结果: 来源 http://lavasoft.blog.51cto.com/62575/222738 阅读全文
posted @ 2016-12-29 16:17 MarcoReus 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 1.传统方式需要新建一个接口类,然后在接口类中将结果在方法中作为参数进行处理 2.可以使用java5的新特性,实现Callable这个接口 阅读全文
posted @ 2016-12-29 14:26 MarcoReus 阅读(239) 评论(0) 推荐(0) 编辑
摘要: package de.bvb; /** * 生产者消费者模式 * 通过 wait() 和 notify() 通信方法实现 * */ public class Test1 { public static void main(String[] args) { Godown godown = new Godown(50); for (int i = ... 阅读全文
posted @ 2016-12-28 17:49 MarcoReus 阅读(324) 评论(0) 推荐(0) 编辑
摘要: 工程截图 1.jar包 和 hibernate配置文件 /src/hibernate.cfg.xml , /src/log4j.properties , /src/db.sql <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-co 阅读全文
posted @ 2016-12-26 17:38 MarcoReus 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1.关联jar包: activation.jar mail.jar 2.调用 3.封装代码 3.1配置文件: src/mailConfig.properties 3.2 实体类 package de.bvb.utils; import java.util.List; public class Mai 阅读全文
posted @ 2016-12-18 20:56 MarcoReus 阅读(280) 评论(0) 推荐(0) 编辑
摘要: package de.bvb.test; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.os.Message; import java.lang.ref.WeakReference; public class MainActivity exte... 阅读全文
posted @ 2016-12-16 10:22 MarcoReus 阅读(154) 评论(0) 推荐(0) 编辑
摘要: package de.bvb.widget; import android.animation.ValueAnimator; import android.content.Context; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import an... 阅读全文
posted @ 2016-12-16 09:37 MarcoReus 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 1.web.xml代码 2.de.bvb.web.filter.HtmlFilter.java 代码 阅读全文
posted @ 2016-12-13 17:12 MarcoReus 阅读(1353) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页