coriolanus
coriolanus

Reputation: 401

When will invokedynamic be available in the standard JDK?

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

How long before this is part of the standard JDK?

Upvotes: 2

Views: 350

Answers (2)

shijie xu
shijie xu

Reputation: 2097

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

Upvotes: 0

skaffman
skaffman

Reputation: 403551

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.

Upvotes: 4

Related Questions