I know that C++0x is not out the door yet, but what would you like to see in C++1y?
Update: C++0x to be called C++1x :o(
|
6
|
I know that C++0x is not out the door yet, but what would you like to see in C++1y? Update: C++0x to be called C++1x :o( |
||||||||||||||||
|
|
|
mmm... talking about the new standard name I think if for you all 0x means an hexadecimal number, then it will be C++A or C++a but never C++0A cause this is an invalid octal number and an error compilation in C++ :) |
|||
|
|
|
|
A standard library like the one Java or .NET offer. |
||||||||
|
|
|
Concepts! :) |
|||
|
|
All this comments put together look amazingly similar to "D" programming language. Did you know that some very big C++ names are already writing articles on "D" ? I am afraid "D" will be the end of "C++" if the famous ISO comity is not shaken and stirred and than made up again ... Dusan (London, UK) |
||||
|
|
|
First of all, removal of C cruft. No And a bunch more ...
|
||||||||
|
|
|
I would like to see bignums in c++ std lib. Other languges (LISP, Haskell, Python, Java, C#, Ruby...) already have it. |
|||
|
|
|
|
Replace it with D. |
|||
|
|
|
|
I'd like to see (optional!) statically-checked exception specifications:
There would have to be a whole lot of work to do here, but it would be a fantastically useful feature, and it wouldn't have all the problems that a mandatory checking framework has. |
||||||||
|
|
|
static reflection We already small amount of reflection available in the type_traits library. I just want to see more. Essentially I'd like to be able enumerate all members and/or methods at compile time. In my mind it would look a lot like the current function traits. I described it a more completely in my blog. I've also posted many of the same ideas to comp.lang.c++.moderated. Just a quick list of benefits from compile time reflection
|
|||
|
|
|
|
I want more floating posting types, working with DSPs requires me to write custom assembly classes with hacky unions of floats and fixed points to get the maximum out of the hardware.
|
||||
|
|
|
I want to see all the GC stuff that was cut out of C++0x. |
|||
|
|
|
|
Here's my wish list:
and my pony:
|
|||
|
|
|
|
I wouldn't mind seeing a standard way of dealing with time beyond the Unix Epoch. I realize that this might fall under the OS, but I'd like to see it in the standard library. (Does the standard library fall under the c++ spec? I don't know, but the issue needs to be addressed sometime soon, because it isn't too unreasonable to expect embedded systems to still be in use in 20 years or so.) |
||||||||
|
|
|
As for the language features - pretty much only modules. Well, maybe multiple dispatch as well :). I'd like to see RTTI removed, but of course it cannot happen. As for the standard library, I'd like to see: more support for international programming (Unicode, localization readiness, calendars, etc), networking, a better IO library, more string manipulation functions (include Boost String Algorithms?), improved support for concurrency, secure integers (something like SafeInt), decimal floating point numbers, big integers. I don't think adding a GUI library makes sense, and I don't want a non-deterministic garbage collector either - even as an option. |
||
|
|
|
Another feature i would like to see are string template arguments. This would for example allow for static (compile-time) checking and compilation of regular expressions, file-paths and others. An alternative would be user defined literal operator templates that accept string literals. That is, the following would be nice to have
And it would check and compile the regex at compile time. This is currently only allowed for integer or floating point literals for the next Standard. |
||||||||
|
|
|
There are no things I'd like added to already huge and complex language. There are plenty I'd like to see removed or redesigned :( |
||||||||
|
|
|
I'd really like to see polymorphic lambdas. The lambdas that we get in the next Standard are monomorph only
Polymorph lambdas would allow for more readable code and for less duplication. No need anymore for repeated writing of type-names anymore:
As you see, we wouldn't need to spell out the type of the parameter. An alternative syntax would be using templates
|
||||||||||||||||
|
|
|
I don't know if anything similar has been submitted, but I'd very much like an equivalent of typedef that defines a new type so that you would be forced to use a static_cast<> to convert from one type to another. For example you could define a class like this :
And using it like this wouldn't compile
But this would
This way you could be sure that the users of your class really use the typedef you intended to use. |
||||||||||||||||||
|
|
|
inline keyword deprecated. Its almost as useless as the old "register" keyword. (that is to say its a very vague hint at best, not that I'm against inlining). |
||||||||||
|
|
|
Would be nice:
|
||||||||||
|
|
|
A standard ABI (Binary interface) would be great. |
||||||||||
|
|
|
I'd like to see modules. I'm getting more sick of |
||||
|
|
|
Most probably C++0x will be C++1x, because it won't be finished in 2009. And most importantly, I would like to lay my hands on finished, production ready C++(0|1)x :) |
||||||||||||||||||||
|