vote up 8 vote down star
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(

flag
23  
This should be community wiki. – LiraNuna Jul 10 at 6:35
1  
Remember: if you really want something in, the committee is quite open to suggestions. They'll happily accept a well-researched paper even if you never wrote a compiler – MSalters Jul 16 at 11:43
What are these? I've not heard of them... – RCIX Jul 17 at 9:48
3  
@RCIX: C++0x is the "temporary" name for the next version of the C++ standard. It was intended to come out some time in this decade, but they werent sure which year, so they called it 0x. Now the joke is that as 2010 draws closer, the 'x' might have to be a hex digit. We're likely to end up wiht a C++0a then. ;) I haven't heard the name C++1y before, but it's a logical extension -- the version of C++ to come after C++0x. – jalf Jul 22 at 19:24
Yes, C++1y is just a name I invented to collect suggestions for the version after C++0x – Andrew Stein Jul 22 at 22:29

23 Answers

vote up 0 vote down

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++ :)

link|flag
vote up 1 vote down

A standard library like the one Java or .NET offer.

link|flag
+1, with a small edit: A standard library with functionality like the one Java or .NET offer. – avakar Jul 22 at 19:11
Already there: www.qtsoftware.com (well, not in the standard, but neither is Java's or C#'s library). – mmutz Jul 31 at 18:37
The problem with Qt is that it has very Java-like look, and doesn't use idiomatic C++ patterns - unlike, for example, Boost. I'd kill for a decent cross-platform Boost-style UI library. – Pavel Minaev Sep 9 at 6:51
I had the opportunity of testing Qt a bit, but I didn't like it that much. I prefer Swing any time. And Boost has too much C++ magic for my taste. – Geo Sep 9 at 7:21
vote up 5 vote down

Concepts! :)

link|flag
+1, I was just going to write the same thing :) – avakar Jul 22 at 19:08
+1 I can't upvote this hard enough – bdonlan Jul 22 at 20:37
vote up 0 vote down

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)

link|flag
1  
D is missing two critical features before it can be taken seriously: 1) Backwards compatibility with C++ (you don't expect people to just throw away their millions of lines of C++ code just to switch to D, do you? If we're going to throw away our code, why not upgrade to a really modern language instead of another incremental improvement?) And 2) general acceptance. Broad compiler support and a stable standard people can work against and get used to, similar to how we've had C++98 for the last decade. – jalf Jul 24 at 19:36
vote up 1 vote down

First of all, removal of C cruft. No const char* to char* cast anymore, no C-style casts, etc. Even if this means that current C++ code will have to be slightly adapted.

And a bunch more ...

  • Make "foo" actually an array<char, size-known-at-compile-time>
  • Remove redundant keywords (typename/class in template definitions) and redundant ways to define stuff. There should be usually one way to do something, and not two equally good ones (at least for simple stuff).
  • Revamp the string handling. Strings should be encoded using Unicode, with strong conversion functions.
  • Deeper runtime control. Let me reroute all memory allocations to my custom allocator, stuff like this.
  • Cleaned up standard library. binary_search should be replaced with something useful, and the stream classes need an overhaul. They should be byte oriented, and not character oriented, and much simpler than they currently are.
  • Reworked RTTI system, with additions to the standard library to do real introspection. At least, give me a guarantee for getting class names!
  • Standard library split up into more than one namespace.
  • More focus on performance. The STL should inherit some stuff from the EASTL proposal, for example, a useful allocator model. The current one is really problematic at best.
  • Oh well, and of course thread pools and abstractions for parallelism in the standard library.
  • fix vector<bool>
link|flag
C++0x is already reworking the allocator model, and Unicode character types are being added. – jalf Jul 21 at 16:22
Yes, but the string handling in C++ is very bad compared to .NET/Java/etc. The main problem is the string class -- although it contains a lot of functions, it still lacks basic processing stuff (to_lower?). Boost::StringAlgorithms helps a bit, but I didn't see a reliable way for manipulating UTF strings with C++ (which is tricky, as several bytes may form a single character ...), except of course the ICU library. Ideally, there would be no need for ICU :) – Anteru Jul 22 at 6:38
1  
In Java and .NET, you may also need several `char`s for a single character, so you have all the same problems, except that they're less obvious (many people don't understand that Java/.NET strings are UTF-16, not UCS2, and what surrogate pairs are). – Pavel Minaev Sep 9 at 6:52
vote up 1 vote down

I would like to see bignums in c++ std lib. Other languges (LISP, Haskell, Python, Java, C#, Ruby...) already have it.

link|flag
vote up 4 vote down

Replace it with D.

link|flag
vote up 7 vote down

I'd like to see (optional!) statically-checked exception specifications:

void foo () static throw()
{
    throw 1; //ERROR: function marked throw()
}

template <typename T> void bar(T t) throw(auto)
  // will have a specification of every exception it might throw.
{
    return t;
}

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.

link|flag
The problem is that this feature can never be optional. If you do (optionally) define your exception specification, then either you are restricted to only using functions/methods that have exception specifications or else the compiler will not be able to statically check the code. – dribeas Jul 23 at 6:47
@dribeas: you missed the obvious third option - your function (with exception specification) will have to wrap calls to others (without one) with try/catch. – Pavel Minaev Sep 9 at 6:49
@Pavel Minaev: and what would it do if it did catch something. std::unexpected() at run-time? – UncleBens Sep 9 at 15:30
It would do whatever it wanted to. Ideally, there would also be some way to redeclare library function exception specifications so you weren't forced to do something stupid to wrap a library that doesn't use specifications. – coppro Sep 9 at 16:42
vote up 15 vote down

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

  • Powerful unit testing tools
  • Good intellisense for external C++ libraries (Boost). The current state of affairs is really pitiful even for Microsofts fabled implementation.
  • Cross compiler intellisense libraries
  • Powerful refactoring tools like those in Java
  • serialization of classes
  • marshalling
  • network byte order swapping of complex structs
  • QT's compiler could be completely implmented compile time instead of with macros and a second compile step
  • there has to be a pile of others.
link|flag
vote up 0 vote down

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.

  • short float (16bit float)
  • float (32bit float)
  • double (64bit float)
  • long float (128bit float)
link|flag
long float is usually 80 bytes, 64 bits mantissa + exponent. Nvidia proposed a half type for c that is essentially your short float. – Caspin Jul 11 at 19:29
This actually sounds like a good idea, many platforms already have support for these datatypes and it's a waste we can't use these datatypes. – Jasper Bekkers Jul 11 at 20:05
vote up 2 vote down

I want to see all the GC stuff that was cut out of C++0x.

link|flag
vote up 1 vote down

Here's my wish list:

  • named returns. Many compilers have this, It's a fairly obvious optimisation that can be easily ignored on platforms that can't benefit from it (if there are any?)
  • signatures, ala g++. these are just handy.
  • kernel functions, similar to brook or cuda. without them, it is non-trivial to use any kind of parallelism besides multiple threads.
  • I actually want to see more rtti features. If there was a way to iterate over a type's members, you could implement something like the DRY ORM style of database active records seen in Django or Rails, using pure C++.

and my pony:

  • I'd like a standardized interface that is richer than iostreams. I'm not quite asking for GTKmm (or any other specific or nonspecific gui lib) to go into the standard, but actually, that would be just fine. This is the only one I'm pretty sure won't ever happen, though,
link|flag
vote up 2 vote down

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.)

link|flag
Indeed, time is not particularly different from os to os, much the same as local encoding is not specific to the OS, although the OS has some involvement. – TokenMacGuy Jul 10 at 17:22
Actually, the C++ library leaves this as an implementation detail. The Unix epoch ending in 2038 isn't mandated; an epoch ending in 2012 is also allowed. And defining a date system that work past 9999 is nontrivial. – MSalters Jul 16 at 8:56
Isn't it just a matter of using an unsigned int, or an Int64? – Charlie Somerville Jul 16 at 10:26
@MSalters: I didn't necessarily expect it to be trivial, but it has to be done at some point. Besides, how much of the spec really is trivial by this point? – cjhuitt Jul 16 at 13:39
vote up 4 vote down

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.

link|flag
your post is a mix of ideas I like and some I don't. I almost didn't upvote you – Caspin Jul 11 at 19:25
vote up 9 vote down

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

template<char... C>
constexpr regex operator "" _regex() 
{ return compile<C...>::value(); }

regex numbers = "[0-9]+"_regex;

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.

link|flag
Sounds like a pretty hairy feature to implement. You'd need some sort of pseudo-linker in the compiler itself I guess. What advantage do you see with compile time regex? – Edouard A. Jul 17 at 9:50
1  
Speed and fail-fast, of course. This already works for numeric literals. It wasn't accepted for string literals because of problems with concatenating strings, from what i heard, like "A" "B"_regex. – Johannes Schaub - litb Jul 17 at 13:16
+1 - yes - these would be very kool – Faisal Vali Jul 18 at 13:33
vote up 1 vote down

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 :(

link|flag
4  
It'd be nice if they could deprecate arcane and troublesome features. The first time around compilers could emit a warning. An iteration of C++ after a feature has been flagged deprecated, it could be removed altogether. – luke Jul 10 at 17:29
1  
@luke - isn't going to happen. Most large C++ developers have a huge legacy code base. The last thing they will do is spend hundreds of thousands of dollars upgrading it so they can use the latest compiler. More likely they will just wait for a vendor to provide the new features with decent legacy support. – Tom Leys Jul 17 at 9:50
vote up 17 vote down

I'd really like to see polymorphic lambdas. The lambdas that we get in the next Standard are monomorph only

auto intPrinter = [](int x) { std::cout << x; };
// can only print int!

Polymorph lambdas would allow for more readable code and for less duplication. No need anymore for repeated writing of type-names anymore:

for_each(a.begin(), a.end(), [](x) { x++; });

As you see, we wouldn't need to spell out the type of the parameter. An alternative syntax would be using templates

for_each(a.begin(), a.end(), template<typename T> [](T &x) { x++; });
link|flag
1  
Nice proposition! – Dario Jul 10 at 12:23
7  
I wouldn't call it polymorphic lambdas. I'd call it templated lambdas. Technically both are correct, but polymorphic brings a virtual tables to mind. – Caspin Jul 11 at 19:23
It's been discussed but discarded for 0x. I'm unsure about the rejection reason but I submit it's due to the complexity of implementing a fully generic lambda. – Edouard A. Jul 17 at 9:44
I read the lambda paper. They rejected them because that feature is provided by libs like boost.lambda in parts, and because they found it not really worth. Something along that way. @Caspin, that's what they are "officially" called. I didn't invent that term, but i don't like it either :) – Johannes Schaub - litb Jul 17 at 13:18
2  
I thought for_each(a.begin(), a.end(), [](auto x) { x++; }); would work? – mmutz Jul 31 at 18:48
show 2 more comments
vote up 4 vote down

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 :

class Person
{
public:
    // the *typedef new* is just an idea for the syntax that could be used
    typedef new std::string name_t; 
    Person(const name_t& name);

    const name_t& getName() const;

    void setName(const name_t& name);
};

And using it like this wouldn't compile

void func()
{
    std::string name("Etienne");
    Person person(name); //<-- this wouldn't compile

}

But this would

void func()
{
    Person::name_t name("Etienne");
    Person person(name);
}

This way you could be sure that the users of your class really use the typedef you intended to use.

link|flag
typedef new std::string name_t;? Do you mean typedef std::string name_t;? – GMan Jul 10 at 10:08
7  
This "strong typedef" is supported by D, IIRC. I agree it'd be nice. – tragomaskhalos Jul 10 at 10:50
1  
explicit is a C++ keyword, in some situations preventing implicit type conversions. Is that what you mean? – LiraNuna Jul 10 at 11:05
2  
So you want 2 different types that are different from the compilers point of view for type conversion and matching but have the same implementation. I like this idea. And it wouldn't be hard to implement. – Matt Price Jul 10 at 13:41
2  
Boost strong typedef: boost.org/doc/libs/…. – Éric Malenfant Jul 21 at 18:33
show 4 more comments
vote up 0 vote down

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).

link|flag
13  
inline keyword has little to do with code inlining (at least since 1998). inline marks a function so that multiple (but equivalent) definitions of the same function are not considered an error by the linker. The keyword is very much necessary and cannot be deprecated. – avakar Jul 10 at 8:42
Although it would be nice if inline could be re-named. Of course adding keywords is incredibly difficult (which is why we end up with really weird syntax involving symbols like && for "rvalue reference" or [=] used in lambdas). – Max Lybbert Jul 10 at 18:13
2  
Max, I couldn't agree more. I'd say that inline is much worse than cryptic syntax, because with the latter, we're able to recognize that we don't understand it and simply learn. The former, however, leaves us with a false belief that we understand what it means and eventually results in a lot of confusion. – avakar Jul 10 at 19:06
vote up 0 vote down

Would be nice:

  • virtual constructors and virtual copy constructors. So factories and
    cloning can be done more naturally
  • multiple dispatch functions
link|flag
1  
How would virtual constructors work? I mean, don't you need to know the type of object you want? Copy, I could see, since you already have an object of some type... but the base case? I don't get it. – cjhuitt Jul 10 at 13:55
cjhuitt, virtual constructor is a name for an idiom: parashift.com/c++-faq-lite/… – avakar Jul 10 at 19:51
@avakar: OK, so a virtual constructor is to get a default-constructed object of the same type as an existing object. I still don't see how that would be useful in factories. – cjhuitt Jul 13 at 1:47
@cjhuitt: The point of virtual constructors is so that if a factory gives you a Foo* which may point to an instance of some class derived from Foo, you have a way to perform a complete, non-sliced duplication of the pointed-to object, or to create a new object of the same type, without needing to know what the underlying dynamic type of the object actually is. Doing this in C++ currently requires either a lot of code duplication, or a pile of template-based hackery. – Tyler McHenry Jul 17 at 9:49
vote up 20 vote down

A standard ABI (Binary interface) would be great.

link|flag
The better way to do that is a TR (Technical Report). See for instance TR1 on library extensions. – MSalters Jul 16 at 8:51
2  
This really fits with @avakar answer: modules that are not compiler dependent – dribeas Jul 23 at 5:15
2  
I'm sick of writing objects in every language under the sun, and having zero reusability without having to resort to heavyweight object-sharing like CORBA or COM. – Chris Kaminski Jul 23 at 12:53
vote up 37 vote down

I'd like to see modules. I'm getting more sick of #includes and slow compilation every day.

link|flag
1  
agreed. Any news on this? Are they still looking to do that in a TR? – jalf Jul 24 at 19:37
vote up 4 vote down

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 :)

link|flag
9  
Let x be a hexadecimal number ;) C++0A seems probable – carlpett Jul 10 at 7:17
2  
Steve: Then look at the timeframe for HTML5, and suddenly C++0x seems to have a very sane time frame. – Michael Stum Jul 10 at 12:29
3  
@carlpett: it's a roman numeral. X is 10. – Thomas Jul 10 at 12:32
3  
The reason why C++0x isn't here yet is because of concepts. They are complicated, and getting them done right is hard - especially as there are no up-to-date implementations (even research ones) on which to test the design (ConceptGCC is already outdated). A good explanation of where things are at the moment is this paper: open-std.org/jtc1/sc22/… – Pavel Minaev Jul 10 at 17:47
2  
Concepts were dropped. – Edouard A. Jul 17 at 9:51
show 2 more comments

Your Answer

Get an OpenID
or

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