
编程语言-Grovvy
jxluoix
能够自己独立开发中小型的软件系统;
对工作态度认真、执着、诚恳;勇于专研、探索、创新;
接受新事物快、见识宽广.
展开
-
Groovy 几个例子
Bike.groovy package test.groovy;class Bike { String manufacturer String model Integer frame String serialNo Double weight String status BigDecimal cost public void setCost(BigDecimal newCost) { ...原创 2010-05-17 00:48:51 · 262 阅读 · 0 评论 -
Java执行Groovy脚本
public class printlntest { @Test public void test() { GroovyShell shell = new GroovyShell(); URL url = getClass().getClassLoader().getResource("println.groovy"); ...2012-06-12 12:23:23 · 154 阅读 · 0 评论 -
lambda
lambda lambda在计算机编程语言中,如Lisp,Python和Ruby, λ是一个算子,用于表示匿名函数或者闭包,后跟λ演算的用法。在C#编程语言中,一个λ表达式是一个包含表达式和语句的匿名函数。非λ语言是一种基于组合逻辑的函数式编程语言,一个简单化的λ演算并不包含λ所有的内容, lambda term 一个有效的lambda表达...2016-09-06 22:31:59 · 235 阅读 · 0 评论 -
lambda和函数式概念区别
> (define x (let ((a "this is a")) a)) > x$22 = "this is a"2016-11-11 16:42:10 · 389 阅读 · 0 评论