最近翻了下写unit test 的文章,总结如下 What's unit test? "Unit testing is a software testing method by which individual units of source code." – –Wikipedia What's integration test? "Integration testing is the phase in software testing in which individual
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 回调函数Demo { /* 回调函数的作用,1.分装;2.异步;3.扩展具体方法. * 通过一个委托给出实现功能模块扫遵循的协议:参数和返回类型,而这个委托我们就叫做回电函数,本质上就是一个委托. * 回调函数只是一个标准,一个占位符.而具体工作的方法只要是满足回调函数(也就是委托)给出的协议即可. * 可