Spring IntegrationExtends the Spring programming model to support the well-knownEnterprise Integration Patterns. Spring Integration enables lightweigh...
分类:
编程语言 时间:
2014-08-27 18:17:58
阅读次数:
421
private static void TestMethod(){ //dynamic 仅仅是个占位符而已 dynamic p1 = new { X = 1, Y = 89 }; //对dynamic对象p1的X属性访问通过CallS...
分类:
其他好文 时间:
2014-08-27 16:07:37
阅读次数:
224
dynamic a = new { A = 1, B = 2 }; Console.WriteLine("a.A=" + a.A); dynamic b = new Dictionary(); b["A"] =...
分类:
其他好文 时间:
2014-08-27 14:25:07
阅读次数:
166
一.创建maven工程 在eclipse的菜单栏选择File->New->Other->Maven->Maven Project 下一步后选择Create a simple project(skip archetype selection),如图 下一步后输入Group Id,Archive Id,Packaging后点击Finis...
分类:
Web程序 时间:
2014-08-27 13:12:38
阅读次数:
244
Gray Hat Python Python Programming for hackers and reverse engineers
Python灰帽子:黑客与逆向工程师的Python编程之道
差不多两周之前看到了这本书,心情很是激动啊,下定决心一定要好好看看。
好了一个星期的边看边写,发现激动的心情不在了,里面的内容都是为了底层debuger的
的内容,要安装的东西跟版...
分类:
编程语言 时间:
2014-08-27 10:55:17
阅读次数:
225
C++类型转换
const_cast,字面上理解就是去const属性。
static_cast,命名上理解是静态类型转换。如int转换成char。
dynamic_cast,命名上理解是动态类型转换。如子类和父类之间的多态类型转换。
reinterpret_cast,仅仅重新解释类型,但...
分类:
编程语言 时间:
2014-08-26 19:16:26
阅读次数:
245
HDU 4972 A simple dynamic programming problem
题意:篮球比赛有1、2、3分球 现给出两队的分差序列(5:3 分差2 3:5分差也是2) 问有多少种可能的比分
思路:
比较简单的想法题 可以类一张表“从分差x到分差y一共有几种情况” 很容易发现只有1->2和2->1的时候会多一种情况 其他均是一种 所以只需要统计这种特殊分差即可 注...
分类:
其他好文 时间:
2014-08-26 17:32:16
阅读次数:
276
Problem Description
Dragon is watching NBA. He loves James and Miami Heat.
Here's an introduction of basketball game:http://en.wikipedia.org/wiki/Basketball. However the game in Dragon's version...
分类:
其他好文 时间:
2014-08-26 15:38:56
阅读次数:
183
一、什么是 AOP。AOP(Aspect Orient Programming),也就是面向切面编程。能够这样理解,面向对象编程(OOP)是从静态角度考虑程序结构,面向切面编程(AOP)是从动态角度考虑程序执行过程。二、AOP 的作用。经常通过 AOP 来处理一些具有横切性质的系统性服务,如事物管理...
分类:
编程语言 时间:
2014-08-26 15:23:16
阅读次数:
237
Dynamic programming, or the "put shit in a table" technique, is an optimization for certain types of recurrence problems (specifically, those with ove...
分类:
其他好文 时间:
2014-08-26 11:17:25
阅读次数:
208