vote up -2 vote down star

Seriously, how hard is it for the developers of the world to come up with a language that is elegant and fast?

  • Ruby is very elegant but dog slow compared to C\C++
  • Java and C# compile into bytecode/IL
  • C is insanely fast but lacks all the OOP beauty
  • C++ (used to be my favorite) but unfortuantely it's bloated with ugly C-backward-compatible-features plus a myriad of other problems..

The D programming language looks promising, but the language just came out a year ago (may be)? Why hasn't been there any other candidates? is it really that hard to create a language with such features?

flag
3  
I think D actually came out in 1999. – Mike Cooper Sep 10 at 17:21
It must be, otherwise someone would have invented such a language by now.... – Glen Sep 10 at 17:21
3  
You forgot a fifth bullet point: * Brings you free beer – DVK Sep 10 at 17:22
1  
Hey, if it's that easy, why not do it yourself? – skaffman Sep 10 at 17:25
1  
I first saw a language called D in 1980. I think there have been at least 6 different languages all called D since then... – Chris Dodd Sep 10 at 17:41
show 8 more comments

closed as not a real question by Glen, Nick Presta, skaffman, Robert S., GMan Sep 10 at 17:26

3 Answers

vote up 1 vote down

Java and C# do not have to compile to bytecode/IL. GCJ can compile java to native bytecode and I believe Mono has some static compilation options for C#.

So I think you are confusing the language and the platform.

link|flag
vote up 1 vote down

You can simply use the non-bloated parts of C++ (ala "Javascript: The Good Parts" for JS).

link|flag
1  
I'm keeping my fingers crossed in hopes that someone will write "C++: The Good Parts". (...and also "PHP: The Good Parts", just in case anyone reading this is into granting wishes.) – Bill the Lizard Sep 10 at 17:32
@Bill: It's already been written. Well, at least an introductory text about "The Good Parts" is already written: acceleratedcpp.com – sbi Sep 10 at 17:53
vote up 0 vote down

If you want to compile Java into native code, go use gcj. You might not really want to. The virtual machine approach has a lot of advantages including dynamic profiling optimizations rarely attempted by static compilers.

We have plenty of languages. It's easy to create a new one. The hard problem is convincing anyone to use it.

link|flag

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