2

I'm eager to start working with dynamic languages on top of Java.

How long before this is part of the standard JDK?

coriolanus
  • 401
  • 1
  • 5
  • 7
  • 5
    There's nothing stopping you using dynamic languages on the JVM today. There's plenty available. "Invoke dynamic" will just improve the performance with a bit of extra juice. – Tom Hawtin - tackline Feb 01 '10 at 02:57

2 Answers2

4

When Java 7 is released. Currently, best guess is late 2010, but subject to change.

Keep an eye out. Last mention of JSR-292 was here, about 2 weeks ago.

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
skaffman
  • 398,947
  • 96
  • 818
  • 769
0

Java language does not support dynamic language. However, you can use invokedynamic instruction in your java program with some library, like asm.

shijie xu
  • 1,975
  • 21
  • 52