Faking closures on the JVM isn't as simple as it looks

From JVMLangSummit
Revision as of 17:29, 28 June 2010 by Abuckley (talk | contribs) (New page: David Pollak ===Abstract=== Scala is a hybrid function/OO language that fully supports and extends Java's object model as well as providing functions that close over current scope. Well,...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

David Pollak

Abstract

Scala is a hybrid function/OO language that fully supports and extends Java's object model as well as providing functions that close over current scope. Well, golly gosh, it seems easy at first, but when you dig down, stuff like non-final variables, lazy values and other constructs make closures non-trivial. David Pollak will explore Scala's functions and byte-code that allows the functions to close over current scope.