Is anyone attempting to implement C# for the JVM? As a Java developer, I've been eyeing C# with envy, but am unwilling to give up the portability and maturity of the JVM, not to mention the diverse range of tools for it.

I know there are some important differences between the JVM and CLR but is there anything that is a showstopper?

link|improve this question

3  
Personally, I've written many. Develop on windows, deploy to UNIX servers. – Eric Petroelje Mar 25 '09 at 17:30
17  
I haven't written any in "JAVA" but I've written plenty in Java. It's not an acronym :) – Jon Skeet Mar 25 '09 at 17:36
2  
lol @ Jon Skeet and his hate for the JAVA "acronym" – ryeguy Mar 25 '09 at 17:43
3  
I've also written many, many fully multiplatform apps in Java - it's an everyday thing for me and my team. We do usually run the test plan on each platform we officially "qualify," but I think it's been years since a test bug has been attributed to a platform difference. – Jared Mar 25 '09 at 18:52
1  
Our main product runs on Windows, OS X and Linux unchanged. It is really not hard to do. – Thorbjørn Ravn Andersen Aug 7 '09 at 21:07
show 6 more comments
feedback

4 Answers

up vote 36 down vote accepted

There are very significant differences between the CLR and the JVM.

A few examples:

  • Java doesn't have user-defined value types
  • Java generics is completely different to .NET generics
  • Many aspects of C# depend on elements of the framework - delegates etc. You'd need to port the library as well, even for language aspects.
  • Java doesn't support things like properties and events at a JVM level. You could fake some of this, but it wouldn't be the same.
  • I don't believe Java has any equivalent to pass-by-reference parameters, even at the JVM level
  • Subtleties to do with the different memory models would quite possibly bite, although I'm not sure how much is in the C# spec.
  • Unsafe code in general probably isn't possible in Java
  • Interoperability with native code is very different between JNI and P/Invoke. This probably isn't much of a problem for you.
  • You'd have to fake operator overloading and user-defined conversions

You could probably port a lot of C# - but you'd be left with a pretty unsatisfactory experience, IMO.

Going the other way, are you aware of IKVM? It allows you to run Java code in .NET.

link|improve this answer
3  
Java has finalizers, and .NET finalization isn't deterministic either. There may be some subtle differences between the two, but I can't think of any offhand. I suspect Java's reachability tests are stronger than .NET's though: no finalization while another thread is still running an instance method – Jon Skeet Mar 25 '09 at 17:45
1  
I think you could map value types onto reference types. Just make every assignment do a shallow clone! – Daniel Earwicker Mar 25 '09 at 17:47
1  
@JaredPar: They've been in since Java 1.0. You override the finalize() method. – Jon Skeet Mar 25 '09 at 17:55
1  
Re: value types - I'm not so sure. The set of things that need mapping is quite limited, and the fact is that the performance difference with struct vs class is typically extremely small; no doubt it would hurt some applications but probably not most. – Daniel Earwicker Mar 25 '09 at 18:17
4  
@Jon Skeet: That gives you the worst of both worlds: Java's somewhat outdated language on Microsoft's proprietary platform. – Bart van Heukelom Jul 2 '10 at 22:04
show 10 more comments
feedback

Visit http://code.google.com/p/stab-language

The code below if a Stab language code for JVM

using java.lang;
using stab.query;
public class Test {
   public static void main(String[] args) {
   // Sorts the arguments starting with "-" by length and then using the default   
        // string comparison
        var query = from s in Query.asIterable(args)
                    where s.startsWith("-")
                    orderby s.length(), s
                    select s;
        foreach (var s in query) {
            System.out.println(s);
        }
    }
}
link|improve this answer
1  
stab delivers much of the meat of C# language on JVM but does so in a way that is very Java inter-operable. So it's not strictly source code compatible to C# code written for the .NET CLR but it does enable a Java programmer to enjoy a very C# like language while getting the same quality byte code generated and having non-impedance interoperability with Java libraries and frameworks. It's the right approach to take for getting C# on the JVM. – RogerV Jul 24 '10 at 14:53
feedback

Look at Grasshopper. It is a Visual Studio-based SDK and patented .NET to Java converter that enables you to run .NET Web and server applications on Linux® and other Java-enabled platforms.

link|improve this answer
1  
Do you have practical experience with it? Also note the license is draconic for the free version. – Thorbjørn Ravn Andersen Aug 7 '09 at 21:17
1  
You lost my interest the moment you said the word "patented". Sigh. – Stephen C Nov 20 '11 at 11:51
feedback

It might be simpler to write a converter from IL to bytecode. That way you'd automatically get support for any .NET language on the JVM.

However, this is such an obvious idea that if this hasn't already been done, it's probably extremely hard, or hard to do well/usefully.

link|improve this answer
3  
You'd run into most of the problems I listed - different generics etc. – Jon Skeet Mar 25 '09 at 18:10
jsc.sourceforge.net – mcintyre321 May 27 '10 at 21:50
3  
This is exactly what Grasshopper does (see @alex's answer above) it is indeed extremely hard to do well (I used to work on Grasshopper). – Motti Aug 9 '10 at 14:55
feedback

Your Answer

 
or
required, but never shown

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