可靠枕头

文章
4
资源
0
加入时间
3年1月7天

Web Automation with Selenium (C#)

Web Automation is a quite regular task nowadays, scripting for repeated operations and testing. Selenium is a good toolkit for this kind of tasks.There are four subprojects in Selenium:Seleniu...

第10节-函数三(高阶函数/匿名函数/闭包/装饰器)

第10节-函数三一、高阶函数二、匿名函数1.过滤器2.匿名函数(lambda函数)三、闭包四、装饰器一、高阶函数满足下列特点之一的函数称之为高阶函数:特点1:接收一个或者多个函数作为参数特点2:将函数作为返回值(不加括号)注意:函数做形参和实参传参时,均不加括号二、匿名函数1.过滤器filter():内嵌的过滤器函数,可以过滤一些可迭代的对象,返回fiter类型的对象(可以通过list强制转换为列表)filter()的两个参数:filter(过滤的条件, 过滤的序列)—满足条件则留下过