Although C++0x is quite an improvement to C++ (type inference, anonymous functions, and so on), I have to say that Scala seems even better. The thing is that Scala only runs on the JVM, although it seems like it can also run on top of C#.

Ideally, I would like a language as nice as Scala, but running "on top of" C++ -- using the standard libraries, easily linking against C/C++ object files, the whole deal. I do a lot of numerical programming built of top of well established C/C++ libraries (fast and reliable), and that is not something I can walk away from.

Is anyone of aware of such a language?

Update:

The features I am looking for are:

  • Seamless integration with C/C++ libraries, just like Scala can access Java libraries without the need for bindings to be generated/maintained

  • A strong type system, with a well designed type inference system that keeps me from having to write verbose and redundant type annotations

  • Functional and OO features built into the language, with the support of its own libraries instead of only relying on the standard C/C++ libraries.

It seems like a lot of the clang/LLVM work being done right now may facilitate work along these lines, but it would be nice to find that something like this is already being worked on.

link|improve this question

78% accept rate
5  
What features of Scala do you find appealing? – James McNellis Dec 29 '10 at 2:19
3  
Virtually all languages can link with C code, e.g. C#, Python, Delphi, Ruby, etc., and you rarely have libraries that only expose a C++ API anyway (because that would basically restrict the library to only be used from C++, and nothing else). I'm not entirely sure what you're asking for beyond that. – Michael Madsen Dec 29 '10 at 2:24
1  
How is this programming related? I mean, where is the code? Voted to move it to programmers.stackexchange.com – OscarRyz Dec 29 '10 at 4:16
1  
You haven't really specified anything that isn't already in C++. Too vague to be answered. – jalf Dec 29 '10 at 9:01
4  
For what it's worth though, "As Java is to Scala, C++ is to a skateboard". That's about as meaningful an answer as you're going to get. – jalf Dec 29 '10 at 11:17
show 6 more comments
feedback

12 Answers

I wonder why no one has yet mentioned the D programming language. It is a perfect fit for your requirements.

link|improve this answer
1  
Great minds think alike ;-) – Landei Dec 29 '10 at 7:41
But D is proprietary, no? – Marcus P S Dec 29 '10 at 16:15
@Marcus: no more than Scala is. It doesn't have an ISO standard or anything, and they occasionally the write new versions of the language (D 1.0 and D 2.0), but there is a GPL'ed GCC frontend for D. – Ken Bloom Dec 29 '10 at 16:39
@Ken: Regarding ISO standards - neither does Java for that matter. – Clifford Dec 31 '10 at 13:46
1  
@Madoc D has as many libraries as C. It does work with some c++. But D and C++ templates don't work together dlang.org/cpp_interface.html I couldn't find a way to use, for example, boost.odeint in D with custom states. If D had a mechanism to support c++ templates, i'd jump today. scientific libraries is the only thing that stops me from D. – kirill_igum Apr 12 at 18:11
show 2 more comments
feedback

You might want to think about Haskell. It has as much niceness as any language out there (in its own way, of course), but it is ardent in its adherence to functional programming so the barrier to learning is substantial. Still, it can be used to call C/C++, and it's surprisingly high-performance on its own.

You also should decide whether you need the language itself to be capable of fairly high-performance computing. If not, it's pretty easy to create Python bindings to C/C++, and Python has quite a few nice features. Or you could use something like Matlab, which is designed for numeric computing as I'm sure you well know, and can integrate with C code pretty well via mex files. If you do need the language to be one in which you can currently write high-performance code, you might even consider taking on the nontrivial task of creating C++ bindings for Scala (it's not that bad if you use JNI or JNA for Java, and then call that Java from Scala), and then only use that for the most important numeric work while Scala handles the less time-critical (but still somewhat important) parts.

link|improve this answer
Haskell looks interesting in its own right, and I have heard great things about its performance. However, the interoperability with C/C++ is not all that seamless. The other alternatives you mentioned suffer from similar problems -- nothing major for general use, but not as nice as the Scala/Java integration. – Marcus P S Dec 29 '10 at 16:22
2  
Very little is as nice as Scala/Java integration, I'm afraid. – Rex Kerr Dec 30 '10 at 1:35
feedback

It's hard to write a language that's compatible with C++, becuase there are so many features, and the ABI is generally considered to be specific to a particular version of the C++ compiler. If you're really looking for easy integration with C++ I'd venture that your best bet is to use Scala with GCJ. You can use the GCJ CNI to integrate with your C++ objects (though suggesting the GCJ CNI is grounds for a downvote around here.)

link|improve this answer
1  
This may be a nice alternative to JNI, but I worry about the portability. – Marcus P S Jan 3 '11 at 5:38
feedback

Well, Scala is an object-oriented and functional programming language. If you are looking for a modern object-oriented and functional programming language that can also call C code through a foreign function interface, then you might be interested in OCaml.

link|improve this answer
feedback

How about Scala itself, with access to your C++ libraries through SWIG-generated Java bindings?

link|improve this answer
SWIG sounds a lot better than dealing with JNI directly, that is for sure. Something to look into, even if it is not the perfect solution. – Marcus P S Jan 3 '11 at 5:38
feedback

I'm surprised nobody mentioned D. It is close to the C++-syntax but much "cleaner", can use C and C++ libs without problems and adds a lot of advanced features. Sure, the step is not as big as from Java to Scala, but I think given C++'s complexity it is much harder to come up with a really innovative design that doesn't throw most parts of C++ away.

link|improve this answer
feedback

First of all, Scala is a beautiful language. But it doesn't meet my needs, particularly because of the JVM's memory usage (for millions of objects, for example).

Python has the same memory usage problem, but actually less so than Scala. Unfortunately it doesn't support concurrency well at all, and is only fast when using something like PyPy.

I looked at D a while back, when it was in the middle of a library change, and was turned off. Having learned Scala, but realized that the JVM can't handle memory efficiently enough for many objects, I had another look. Learning Scala really helped me to appreciate D's features. They're a little undersold in the D community, but they're all there. D offers:

  • A hybrid of OO & FP -- D's support for "pure" functions may even make it more functional than Scala. [next big thing]
  • Actor-style concurrency [other next big thing]
  • Transactional memory [other next big thing]
  • Immutable objects [supports FP]
  • Pattern matching [supports FP] [also supports OO in Scala, but I'm not sure D does this]
  • Statically typed, but without having to specify types too often
  • Dynamic typing, if you need it
  • High-level strings, bigints, dynamic arrays, etc.
  • "Safe" programs that don't risk pointer addressing problems etc.
  • The option to write unsafe programs.
  • Memory management
  • The option to override/disable memory management
  • Compile-time evaluation [very efficient, and allows more solid code via compile-time checks]

Plus more:

  • Direct access to all that C offers, in the way that Scala has direct access to all that Java offers. I think it's probably harder to interact with C++, but not much. In the end, D is a systems language, so you can quite literally interact with ANYTHING: write device drivers, interrupt handlers, write an OS kernel and load scala programs directly into your custom JVM layer... whatever you want.

  • Not "built on top of C++", but an equal of C++ and C, built on top of assembler and/or machine code. I believe it is possible to compile Scala to C using GCJ, but that's quite a marginal thing to do -- it never took off, for java, and I think GCJ is largely unmaintained now.

  • At least three working, accepted implementations in existence: GDC (Free Software, made by GNU), LDC (an LLVM-based, well optimised, many-platform compiler), and DMD (the official/reference implementation). By contrast, Scala only has the proprietary JVM-targetting implemention available, and an incomplete (abandoned? on hold?) .NET version, which will probably be incompatible in lots of ways.

Cons:

  • D treats some things as objects, other things as primitives with "properties" instead of object attributes. For example, arrays are primitives, not class instances. This is the ugly kind of thing I want a compiler to hide from me, unless I choose to get my hands dirty.

  • D seems to support various types of strings. I believe the "preferred" form is, internally, a pointer to a char, plus a length. I'm not sure if this is good, in terms of compatibility and performance. But maybe it is.

  • While D has fibers and actors, I'm not sure they're as integreated or advanced as Scala's, and certainly not as advanced as Erlangs.

  • I don't know that D has parallel collections, like Scala does.

That's a short list of small faults though. I could make a MUCH longer list for most languages, C++ especially.

All in all, D seems appropriately named; it seems like a worthy successor to both C++, and, arguably, is a more worthy successor to C than C++ is. By that I mean, C++ never seems small, efficient, and elegant to me, in the way that C is. D provides more than C or C++, but it does feel small, efficient, and elegant relative to its feature set.

link|improve this answer
feedback

What about Python with C++ bindings?

See here.

link|improve this answer
feedback

How about Scala + JNA? Basically, JNA is a library that allows you to declare interfaces (or traits in Scala) that match DLL's.

link|improve this answer
JNA seems nice, but performance is quite bad, from what I gather (a lot of overhead). JNI, although fast, looks hellish to use. – Marcus P S Jan 3 '11 at 5:34
feedback

Not sure it meets exactly what you are looking for, but have you considered Python?

EDIT: should add that boost has Python linkage.

link|improve this answer
3  
Down votes without explanations... don't you just love them... I'd like to know what is wrong with what I said so that I can fix any gaps in my knowledge! – Nim Dec 29 '10 at 13:54
python is dynamically typed, OP asked for a strong type system + type inference – HighCommander4 Nov 28 '11 at 22:14
feedback

Have a look :

D Programming Language

link|improve this answer
feedback

I'm looking for the same thing. Lua and D are two options. lua has a command line interpreter, luajit is fast, and for math I use gsl shell. D is more sophisticated but still simple to use. D is also as fast as C++.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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