Reputation: 23419
What are the programming features that are missing in C++ and Java ?
For eg. You can't do recursive programming in QBasic ? You can't dynamically allocate memory in QBasic.
What would be the good to have features in C++, Java.
I think Lisp Programmers will be able to add a few.
Upvotes: 0
Views: 1283
Reputation: 9208
This answer deals only with C++
Things I miss from the syntax, or the standard library:
This is the list of things I would like to see, but I assume other people will disagree with me.
This is the list of things I want to see, but I know they will not get away:
using namespace std
killed it.Upvotes: 1
Reputation: 5080
I think this is a very subjective question. From a theoretical point of view there's nothing "missing" in Java because you can do everything you want to from the perspective of the outcome as an application.
As with QBasic - recursion may not be possible but that doesn't prevent you from changing your recursive algorithm to an iterative algorithm. Programming language theory tells us that you can do this with every recursive problem. So there's also nothing missing here.
I think what you mean are features that are "nice to have" - and here everyone has to decide for himself. I'd even say there are features in the language which would have been "nice not to have" such as static imports - but again this is my subjective opinion...
Upvotes: 1