I've never used Jruby and I don't know why I should, but some people use it to complement the missing Java features in the Ruby language.

So I wonder if Ruby will ever support the missing features Java does in the future so we do not need to learn Java?

What do you think?

link|improve this question

5  
This question is unanswerable: it's impossible to answer this question without knowing what the "missing features" are, but the question doesn't specify those. – Jörg W Mittag Aug 7 '10 at 13:09
We should have a language that supports every feature in every language so we do not need to learn any other language but that. – BoltClock Aug 7 '10 at 14:42
"I've never used Jruby and I don't know why I should, but some people use it to complement the missing Java features in the Ruby language." – never_had_a_name Aug 7 '10 at 17:29
feedback

closed as not a real question by Jörg W Mittag, Brian Agnew, BoltClock, Daniel A. White, August Lilleaas Aug 7 '10 at 14:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

The only features that jruby has which C ruby does not are that you can access java libraries (on the other hand C extensions can be used with C ruby, but not with jruby, naturally) and that you can compile your code to .class-files. Jruby doesn't have any language features that C ruby doesn't have.

To answer your question: it's doubtful that the C ruby interpreter will ever allow you to call java libraries or include an option to compile to java bytecode.

As a sidenote: You don't need to know java to use jruby. Unless you're using C extensions, any ruby code that runs on C ruby should run on jruby without modifications. You also don't need to know any java to use java libraries from jruby, though you should obviously know the API of the library you're using.

link|improve this answer
feedback

No, it won't. Java and ruby are two languages with two different goals. If you want those "missing features" you already have a solution -- jruby.

link|improve this answer
I don't agree that they're two different languages. They're two implementations of the same language. – sepp2k Aug 7 '10 at 12:30
@sepp2k: you misunderstood -- ruby and java are two different languages. I'll edit my answer to be more clear. – Bryan Oakley Aug 7 '10 at 14:40
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.