闭包 closures

闭包, 被这个词吸引, 是因为看到 Will we have closures in Java 1.7(Dolphin)?

下面是学习过程中所看文章的一些摘录

闭包是具有闭合作用域的匿名函数,是可以用作函数参数和方法参数的代码块。

Closure
    A "closure" is an expression (typically a function) that can have free variables together with an environment that binds those variables (that "closes" the expression).

闭包(Closures)和块(Blocks)的概念随着动态语言的发展而兴起。其实闭包的概念已经提出很长时间了,本质上来说,一个闭包是一块代码,它们能作为参数传递给一个方法调用。在Ruby等语言中,这是经常使用的功能。

You can approximate the functionality of closures in Java using anonymous inner classes.
可以使用匿名内部类来近似实现闭包功能。但匿名内部类只是宽泛地近似于闭包,它们并没有深入到您需要的程度。

如今,围绕是否将闭包纳入到java语言中存在极大的争议。有人认为,为了获得闭包的功能而破坏java简洁的语法糖是不值当的。而最近几年来,动态语言(如 Ruby、JavaScript)的流行使闭包纳入Java语言的支持之声日益高涨。从目前来看,Java 1.7(Dolphin)最终很可能会采纳闭包。

java 代码
  1. //Closures for Java    
  2.   
  3. int(int) plus2b = (int x) {return x+2; };   
  4.   
  5. int(int) plus2b = (int x) : x+2;   
  6.   
  7. void(intthrows InterruptedException closure = (int t) { Thread.sleep(t); }  

相关联接

http://www.ibm.com/developerworks/cn/java/j-cb01097.html

http://martinfowler.com/bliki/Closure.html

Closures for Java  http://blogs.sun.com/roller/resources/ahe/closures.pdf

 

你可能感兴趣的:(JavaScript,java,IBM,Ruby,sun)