vote up 4 vote down star

Are there any good, portable, open-source, high-level, statically-typed, imperative, object-oriented, garbage collected, safe languages/runtimes with reasonable performance besides Mono and Java? Mono is nice, but it is a Microsoft technology, and I'm kind of afraid of using it (I'm not sure how rational this fear is). The problem with Java is that it is just too simple (no unsigned data types, no structs, etc.).

flag

"high-level" ... "no unsigned data types, no structs". Er... – Tom Hawtin - tackline Mar 28 at 16:05
The argument against java looks pretty weak right now - unsigned data types, structs? – Amit Kumar Mar 28 at 16:09
Using structs makes sense. It would be daring to use vector-objects in Java to declare the vertices in a mesh, considering that every object has a header a few bytes long. Structs allows much more compact storage. – Cecil Has a Name Mar 28 at 19:17

11 Answers

vote up 1 vote down check

I'd like to point out Vala, which is a language based on the syntax of C#, but which targets a C compiler (similar to Eiffel) and a lightweight, self-hosted runtime. It lacks garbace collection, though.

link|flag
From what I can see, it's like VB6 - it uses reference counting. This actually performs worse than GC in many applications. Ah well, let people learn the hard way! :) – Earwicker Mar 28 at 18:20
Thanks for showing me that. Although there is no GC, it looks like the perfect tool for GTK development. No ugly GObject C code! – Zifre Mar 29 at 13:27
The reference counting compares better to Objective-C than Visual Basic 6, which was slow for other reasons. – Cecil Has a Name Mar 29 at 13:52
vote up 7 vote down

Mono isn't a Microsoft technology. .NET is, but Mono isn't - Mono is an open-source implementation of the ECMA-334 and ECMA-335 international standards. Yes, they originated from Microsoft, but Mono itself is not Microsoft technology.

Not that Mono is a language, of course - C# is the language. But then languages aren't really open-source or not - implementations are.

It does sound like you've probably got an irrational fear of C# - and likewise of Java. There are certainly things I'd like to see in Java (and I significantly prefer C#), but it's still perfectly possible to write very significant applications in it.

link|flag
The problem with Mono is that a number of people don't trust Microsoft (based on past behviour) to not do something that screws Mono. – TofuBeer Mar 28 at 16:30
You should not expect that mono will be a copy of the .net framework, because a lot will be missing. Same as don't expect Wine will emulate Windows for 100%. – Roalt Mar 28 at 16:41
Indeed. And there are things in Mono which aren't in .NET, too. – Jon Skeet Mar 28 at 16:43
Downvoters: please comment when downvoting, otherwise it's pretty pointless. – Jon Skeet Mar 28 at 17:57
Any Microsoft patents covering the ECMA standards are covered by a RAND agreement (Reasonable and Non Discriminatory Licensing). Unfortunately the word "reasonable" is quite open to interpretation; the present situation with Mono continues at Microsoft's discretion. However, given their past... – Earwicker Mar 28 at 18:23
show 4 more comments
vote up 2 vote down

Eiffel fulfills all your requirements

link|flag
vote up 2 vote down

On the CLR, there is Boo.

Boo is a new object oriented statically typed programming language for the Common Language Infrastructure with a python inspired syntax and a special focus on language and compiler extensibility

The Boo Manifesto is a good starting point.

link|flag
vote up 2 vote down

C++ with a garbage collector? Though you issues with Java are not all that much of a show stopper (unless you can detail why you need those things, on the face of it those arguments are usually not very sound, but sometimes they are).

link|flag
vote up 1 vote down

Well, having no unsigned data type in java is rarely considered as a problem.

But what about Lisp - it was the language to introduce garbage collection, and probably the most powerful language at all.

Check the performance comparison by Peter Norvig (the google's research director). You might be surprised that Lisp beats even C++ in some areas and Java in all.

alt text

However Lisp seems not to be a main stream language - I'm wondering why's that? Because it is kind of minimalistic - it probably could not be beaten in power by any current or future language to come.

(I guess what makes C# or Java so popular is not just the language but the libraries.)

link|flag
Because it reads like a soup no one wants to maintain? – rama-jka toti Mar 28 at 19:13
Lisp's power comes from the lack of predefined syntax and structure, but the same things that give it its power, are also the things that make it hard to read and hard to learn. – Grumbel Mar 28 at 20:16
vote up 1 vote down

How can you say that java is too simple?

Ok, one of the reasons for developing Java is to make it less complicated than C++ which has a 900+ page of specification. However, it's much more complicated than C.

About 10 years ago I attended a course by Les Hatton and he did research on making your C program safer to use. He argued that almost no-one could remember the 140 pages of C standard, so it would be exceptionally hard to understand something like C++.

Of course, your target may not require safety, but if you do it's something to remember.

link|flag
vote up 1 vote down

You may take a look on the D programming language.

But to be honest? I'd suggest to stay away of mono/C#. Why? Many reasons...

Also, for practical puroses take Java or C++.

Java is as good as C# even it is little bit different. C++ is as good as well because 99% of problems of GC are solved using reference counting so...

link|flag
-1 for not stating any of the reasons to stay away from mono/C# – Igor Brejc Mar 28 at 17:29
I just didn't want to enter debates on FOSS, vendor lock in and many others. Probably the most important is the fact that mono will allways be behind .Net, in features performance and many others. For exmple: art-blog.no-ip.info/cppcms/blog/post/27 So, FOSS just should not get in there – Artyom Mar 28 at 19:51
vote up 0 vote down

There's always Python and Ruby

link|flag
They fail on the "statically-typed" criterion. – Jon Skeet Mar 28 at 16:21
The also fail on the "reasonable performance" for many problems. – Pete Kirkham Mar 28 at 16:23
C# and Java can also fail on "reasonable performance" for many problems. What performance is reasonable depends entirely on context. Nonetheless, still fail on typing, so -1. – Devin Jeanpierre Mar 28 at 16:27
vote up 0 vote down

First of all, Mono is not Microsoft technology. At second, there are only two serious Virtual Machines (VM) with mentioned features - .Net/Mono and Java. But, setting aside requirement of statically-typed language, you can draw an attention at newcoming Parrot Virtual Machine (Wikipedia article about Parrot).

And, of course, Ruby, Python Erlang, etc. are also crossplatform VM (for single dynamic language)

link|flag
vote up 0 vote down

If you want to learn this in order to be able to be more suited for a job, I suggest you consider either .NET (if you want to go for a Microsoft platform) or Java (if you want to go for platform independence), and do a lot of coding. Both are very large platforms!

Anything else would be niche languages being used in only a few places, which can be very nice but is unlikely to land you a job anywhere but in those few places.

link|flag
I'm not really worried about getting a job right now, I'm just looking for a good language to use in my spare time. – Zifre Mar 31 at 17:38

Your Answer

Get an OpenID
or

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