vote up 14 vote down star
2

I am a full time C++ developer, and I really like the language. I think it is suited for almost any kind of application. Some people claim Java and C# are better suited for high level programming, but I'm not so sure about this. I have worked with all three languages, and when using C++, it happens only now and then I come across something that might be improved.

I'd like to know which features you'd like to see added to C++. I'm talking about big improvements here, and not about details like typesafe enums.

flag
9  
Pls someone add this as community wiki – Ksempac Jun 26 at 7:58
show 2 more comments

36 Answers

1 2 next
vote up 32 vote down

What I really miss is:

  • an easier module system, so it would be less painful to reuse code and plug in components. There are the .lib and .dll libraries, but in my opinion they are not good enough. C# and Java provide a much easier component system.
  • there should be a bigger standard library. I think this is the main advantage of Java and C# over C++. A standard GUI library would be especially handy, as you need it in just about all applications interacting with the user.
  • a macro system more flexible than templates and c macro's. I know, I know, this is easier said than done :-)

Note: with "a more flexible macro system" I mean a better way to write code that generates code. C++ templates generate classes and functions at compile time, but you can only use them only to parameterize types. C macro's can do more, but they are not really integrated into the language.

Note: I know there are some good free C++ GUI libraries around (such as QT and gtkmm), but choosing one is far from easy. I think this deters new users and drives them to Java and C#, which is sad as it seems to be a wrong reason.

link|flag
4  
Huge +1 for a better module system – cwap Jun 26 at 8:31
8  
I don't think that a standard GUI library would be really good (I am just thinking of Swing) - but a big +1 for the easier module system – bernhardrusch Jun 26 at 8:37
3  
A standard ABI for C++? Wouldn't it be lovely... – gbjbaanb Jun 26 at 8:42
1  
+1 for your generic macros/templates. I would like to have token-template-parameters like D has them in some sorts (dunno much of D =)): template<typename T, token M1, typename U, token M2> struct pair { T M1; U M2; }; then you could do pair<int, count, bool, active> p; p.count = 1; p.active = true; or something like this. – Johannes Schaub - litb Jun 26 at 14:50
show 7 more comments
vote up 13 vote down

I think the premise of the question is mistaken, or there are two questions in there.

Just because you find things in Language X that you don't find in Language Y, that doesn't imply that you want those things in Language Y. Different languages have different emphases. If you copy all of the nice stuff from C# to C++ and vice versa, you will just end up with one bloated language...

link|flag
7  
As if C++ weren't already bloated... – Michael Borgwardt Jun 26 at 9:02
show 2 more comments
vote up 13 vote down

Better syntax support for namespaces.

C#:

namespace Common.Places.McDonalds
{
    class ParkingLot
    {
    }
}

C++:

namespace Common
{
   namespace Places
   {
      namespace McDonalds
      {
         class ParkingLot;
      }
   }
}
link|flag
1  
Yes nested namespace in C++ are a pain in the ass, how many times I wished for a better namespace nesting feature... – SuperBloup Jun 26 at 11:57
1  
Just forward declaring class in deeply nested namespace (or nested inside a class). withouthaving to put all the nests. – Martin York Jun 26 at 17:27
3  
Why the hell are you nesting c++ namespaces ? I mean, does it really bring more advantages than pain ? – Jem Jun 26 at 21:48
vote up 12 vote down

I don't care. But I suggest that for every new feature that is added to C++ from now on, an existing feature of comparable complexity is removed.

link|flag
4  
-1. You're promoting the breaking of thousands of existing codebases just to make half a dozen compiler regression tests run faster. In addition, there is very little if any correlation between complex C++ features and features that make C++ programs complex. – MSalters Jun 26 at 10:03
4  
For those who need things spelling out, I'm suggesting not adding any more features. – Neil Butterworth Jun 26 at 10:05
show 5 more comments
vote up 11 vote down

Adding pattern matching like the one in Haskell and other functional languages.

example,

int fibonacci(0)
{
    return 0;
}

int fibonacci(1)
{
    return 1;
}

int fibonacci(int number)
{
    return fibonacci(number - 1) + fibonacci(number - 2);
}

some sort of overloading for values not types. Just the same as a switch except the compiler can do the dirty work for you.

Imagine that tiny tool with you when learnign your first WndProc :)

so this ::

LRESULT CALLBACK WndProcedure(HWND hWnd, UINT Msg,
    		      WPARAM wParam, LPARAM lParam)
{
    switch(Msg)
    {
    case WM_CREATE:
    	break;
    case WM_DESTROY:
        PostQuitMessage(WM_QUIT);
        break;

    default:
        return DefWindowProc(hWnd, Msg, wParam, lParam);
    }

    return 0;
}

becomes this ::

LRESULT CALLBACK WndProcedure(HWND hWnd, WM_CREATE, WPARAM wParam, LPARAM lParam)
{
    return 0;
}

LRESULT CALLBACK WndProcedure(HWND hWnd, WM_DESTROY, WPARAM wParam, LPARAM lParam)
{
    PostQuitMessage(WM_QUIT);

    return 0;
}

LRESULT CALLBACK WndProcedure(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    return DefWindowProc(hWnd, Msg, wParam, lParam);
}
link|flag
2  
Can you give some use case of this? – chappar Jun 26 at 7:55
1  
You're Fibonacci example can be accomplished using functors that take an integral template and then specializing the functor for 0 and 1. – kts Jun 26 at 17:55
1  
I didn't know pattern matching, I hope it will be included in c#, it's prettier than a bunch of switch/if/else. – Nicolas Dorier Jun 27 at 10:16
show 7 more comments
vote up 10 vote down

Reflection is the only thing that I really wish C++ had that it lacks.

link|flag
3  
Stroupstrup says it himself - we don't want to have 20% of the app as code, and 80% as metadata. We'd rather have just that 20% as the entire smaller, efficient app instead. Compile-time metadata is the C++ way, not runtime. – gbjbaanb Jun 26 at 8:44
1  
Yes it would be nice in corner cases in some programs. But for the most part I don't see the need. The exception of course is tools to build tools where reflection would be nice. – Martin York Jun 26 at 17:24
show 2 more comments
vote up 8 vote down

Built-in support for multithreading (although it should be coming in C++0x...whenever the thing is finally released).

A GUI library to design GUI easily (equivalent to Swing for Java or Winforms for C#).

link|flag
vote up 8 vote down

Not having to bother with header files, or at least not the order in which I include them. I find that I'm often in a Catch 22 situation where I have to do forward declarations or even implement some "broker" classes just because two or more .h files depends on each other. It is very time consuming. (But I may be too stupid to use C++ in the first place - I work 10 times faster in C# than in C++...)

link|flag
3  
In all my projects all my code compiles and works exactly the same no matter which order I include my headers. It takes 0 seconds of my time working with them. – HMage Jun 26 at 7:57
3  
Try that when the headers and libraries are not yours and they use conflicting typedefs or macros. – Gerald Jun 26 at 8:11
3  
@HMage, that's not always possible, especially on large projects using libraries that you didn't write. – Bob Somers Jun 26 at 8:13
1  
I like the header file concept and seprating the interface and code. But we need better tools to stop and/or warn undisaplined developers from doing header file inclusion badly and messing with everybody elses productivity. – Martin York Jun 26 at 17:31
vote up 7 vote down

C++ where to begin. This could go on for a long time but how about

  • No delegates. Function pointers were not designed for objects.
  • Syntax that is ambiguous to the
    compiler.
link|flag
1  
You can use functor for all the things that function pointer did – chappar Jun 26 at 13:06
show 4 more comments
vote up 6 vote down

Garbage collection.

(BTW, this should probably be community wiki)

Edit: I didn't realise this would be so controversial... To expand on this: I don't actually want C++ to get garbage collection as it doesn't fit in with the C++ style of doing only what the code says (that's probably not the best way to say it, but I hope you understand what I mean). Despite that, when I use C++ after having used Java or any other language with GC I certainly miss GC.

Also, garbage collection was invented for LISP where manual memory management is... well, it would be horrible. (And if you need another reason for the utility of GC, imagine Haskell without it.)

link|flag
25  
Call me crazy (as I'm sure a bunch of people will, since there are a lot of high-level people here), but garbage collection was created by people who couldn't manage their memory. – Bob Somers Jun 26 at 7:52
11  
@Bob Somers, you're crazy :) – Benjol Jun 26 at 7:54
9  
@Bob Somers, you're not :) – HMage Jun 26 at 7:55
16  
I'd say it was created by people who didn't want to be bothered managing their memory, whether they could or not. – Gerald Jun 26 at 7:56
6  
Manual memory management is for people who prefer tedious coding and bug hunting to getting things done. – Michael Borgwardt Jun 26 at 9:06
show 9 more comments
vote up 5 vote down

Compile time reflection (if we want it in runtime it could be made as a library later)
pattern matching for functions
cv qualifiers and concepts as template parameters
No garbage collection! Ever!
pure(side effect free) functions
language support for defining your own const-like propagated constraining qualifiers
compiler checked algoritm complexity annotations
Design by contract supported by language
polymorphic lambas
multimethods

link|flag
show 2 more comments
vote up 5 vote down

Nothing.

I can see why people talk about memory management but this is handled more efficiently (IMO) with smart pointers.

I can see why people talk about larger standard library but in my office we have a huge standard library involving stl, boost, tinyxml (among others) and stuff we've written ourselves sometimes specific to the field we work in. You may say that this isn't transferable to another job but, for instance, I know how to use XML and changing the library isn't going to be a problem (for me).

I like (and use) the .net languages, python etc etc but like the op I just don't think they're better (or worse) than c++.

link|flag
show 2 more comments
vote up 4 vote down

Automatic reference to outer class in inner class (just like Java), I hate having to store the pointer manually and friend the class manually.

Old style inner classes could still be created using the static keyword.

What bothers me the most is that this can be completely handled by the compiler. This is no impact at all at runtime.


Closures! At least block-style programming Ruby-style, this is possible at compile time too.

Imagine:

    // Display all entries
    entries.each() void yield(Entry e)
    {
    	std::cout << e << endl;
    }

    // Format entries
    const std::vector<std::string> entriesFormatted = entries.map() std::string yield(Entry e)
    {
    	std::ostringstream stream;
    	stream << e;
    	return e.str();
    }
link|flag
vote up 3 vote down

I miss the same functionality as I miss in any programming language, functions that will do my work for me.

link|flag
vote up 3 vote down

A cleaner way to separate the interface and implementation than the PImpl idiom.

link|flag
vote up 3 vote down

Lambdas and first-class functions would be nice.

link|flag
2  
Lambdas are in C++0x. They are sweet. – 0xC0DEFACE Jun 26 at 8:41
vote up 3 vote down

For me just about the most awkward thing to do is to convert between enumeration member, its corresponding numeric value and its string representation. Out of the box C# "just works" in that respect.

link|flag
vote up 2 vote down

I do both for my day job, and it's more what I'd take away from C++, than add to it, because anything you added to make up for one thing you still have all the other baggage.

In C# I miss the templates/macro, in C++ I miss simple strings, no header files, faster compiles.

link|flag
show 2 more comments
vote up 2 vote down

C++ as it is already very complex to learn with a lot of subtile pitfalls. Instead of adding a lot of stuff I would prefer effort was made to make C++ more clean and help compiler vendors detect these subtile errors e.g. a la Pc-Lint.

With libraries, well there are quite a few libraries out there and if you program using C++/CLI you have all the .NET stuff as well.

link|flag
vote up 2 vote down

I think C++ is pretty much perfect, except for a couple of things that I run into regularly.

  • Overriding methods is really fickle.

Example:

class A {
public:
  virtual int doSomething(int x) { return x; }
};

class B : public A {
public:
  virtual int doSomething(int x) { return 2 * x; }
};

Obviously B::doSomething overrides A::doSomething here. But as soon as you were to change anything to A::doSomething, say change the type of x to double, or add a new argument, B::doSomething no longer overrides it, but adds a new overloaded function instead. The compiler can't warn about this. Sometimes you need to change the signature of a virtual function, and only a project-wide search will help you to update all overrides as well. This could be improved by adding an 'override' keyword (replacing virtual) that indicates you intend to override an existing function: the compiler would generate an error if there is no function to override.

  • If you have multiple constructors, you need to duplicate whatever they're doing in each of them. It would be great if you could somehow call one of the other constructors to delegate the work.

Also, if you descend from an object with multiple constructors, you usually need to repeat all of them. It would be useful if the compiler would define constructors that call to the base object destructor automatically.

Example:

class A {
public:
  A() : _x(0) {}
  A(int x) _x(x) {}
private:
  int _x;
};

class B {
public:
  B() : A() {}
  B(int x) : A(x) {}   // need to repeat all constructors here
  void do() {}   // just to be able to add a function
};
link|flag
1  
Some compilers warn us when a function is masked/hidden in a sub-class. Regarding the constructors issue, it will be possible in C++0x. Check en.wikipedia.org/wiki/… – Luc Hermitte Jun 26 at 11:56
show 4 more comments
vote up 2 vote down

Talking about this topic, dont miss the list from Bjarne Stroustrup himself:

Evolution WG issues list

link|flag
vote up 2 vote down

I think C++ is great, but what it needs are faster compile times. I guess this isn't a language "feature" per se, but hey, I can dream, right?

Also, error messages that don't take 5 minutes to figure out. After a while, one gets used to figuring what this means:

error C2664: 'class std::_Tree<class 
std::basic_string<char,struct std::char_traits<char>,class 
std::allocator<char> >,struct std::pair<class std::basic_string<
char,struct std::char_traits<char>,class std::allocator<char> > 
const ,int>,struct std::multimap<class std::basic_string<char,
struct std::char_traits<char>,class std::allocator<char> >,int,
struct std::less<class std::basic_string<char,struct std::
char_traits<char>,class std::allocator<char> > >,class std::
allocator<int> >::_Kfn,struct std::less<class std::basic_string<
char,struct std::char_traits<char>,class std::allocator<char> > 
>,class std::allocator<int> >::iterator __thiscall std::
multimap<class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> >,int,struct std::less<class 
std::basic_string<char,struct std::char_traits<char>,class std::
allocator<char> > >,class std::allocator<int> >::insert(const 
struct std::pair<class std::basic_string<char,struct std::
char_traits<char>,class std::allocator<char> > const ,int> &)' :
 cannot convert parameter 1 from 'const int' to 'const struct 
std::pair<class std::basic_string<char,struct std::char_traits<
char>,class std::allocator<char> > const ,int> &'
 Reason: cannot convert from 'const int' to 'const struct std::
pair<class std::basic_string<char,struct std::char_traits<char>,
class std::allocator<char> > const ,int>'
 No constructor could take the source type, or constructor
 overload resolution was ambiguous

But, really, it shouldn't take a third-party plugin to make reading those easier.

link|flag
show 2 more comments
vote up 1 vote down

I'd like C++ to know that operator + () and operator += () are related to each other, and that if I only supply one it can work out the other for itself.

I'd like auto-generated assignment operators to be strongly exception-safe.

C++ has this to refer to the current object. I'd like there to be a keyword to refer to the current class.

link|flag
1  
Have you seen Boost.Operators? boost.org/doc/libs/… – Piotr Dobrogost Jun 26 at 10:01
show 4 more comments
vote up 1 vote down
try
{}
catch()
{}
finally
{}

Working as in Java. Would have saved some ugly mess in my current project.

link|flag
11  
If you want finally in C++ you don't understand this language at all... – Piotr Dobrogost Jun 26 at 10:02
3  
Check out "RAII" idiom and you'll understand why C++ doesn't need a 'finally' construct. – StackedCrooked Jun 26 at 10:15
2  
Actually, writing good C++ would have saved some ugly mess in your current project. The big problem with try/catch/finally is that it destroys code localization, and makes you write a routine with very little cohesion and very high coupling. RAII is far better. – David Thornley Jun 26 at 21:43
1  
When I have to write an ad hoc class with only a destructor to accomplish some task in legacy C-style procedural code that must now be transitioned to exception safety, I would prefer by far to have a simple finally block. (Yes, this is life in the real world.) – alexk7 Jun 27 at 1:12
show 4 more comments
vote up 1 vote down

One other thing that I'd like is an 'inherited' or 'super' keyword like Delphi has. Often when overriding a function you need to call the inherited function. In C++, you need to spell out the name of the ancestor class:

int B::do()
{
  return 2 * A::do();
}

If now, you decide to refactor and introduce a third class C that descends from A, and you let B descend from C, the only way to fix all references to the ancestor is with a project-wide search, replacing e.g. A::do() by C::do(). Instead, you should have been able to do this:

int B::do()
{
  return 2 * super::do();
}

where super automatically refers to B's superclass.

(Of course, I realize that adding keywords is impossible if you want to maintain full compatibility with existing source code.)

link|flag
1  
It can't be done: how the compiler could now which class you are referring to when there is a multiple inheritance ? – Luc Hermitte Jun 26 at 11:52
1  
MSVC++ has this, it's called __super. (Don't know what it does in the case of multiple inheritance, though) – Niki Jun 26 at 18:03
show 3 more comments
vote up 1 vote down

Most of the things that are in D (http://www.digitalmars.com/d/)

link|flag
4  
You mean limited compiler support and lack of a good IDE? – rlbond Jun 26 at 18:06
show 2 more comments
vote up 1 vote down

Things I would like to see removed:

  • the header / source separation
  • multiple inheritance
  • protected and private inheritance
  • inner functions

Things I would like to see added:

  • have the compiler deduce a class' interface from its object file
  • delegates
  • interfaces instead of multiple inheritance
  • inner classes (Java style, not the current)
  • anonymous inner classes
  • proper exceptions with stack trace
  • mandatory declaration of exceptions
  • a modernized version of stl without all its quirks
link|flag
1  
Um, I think you know where to find C# if you want it. – David Thornley Jun 26 at 21:44
show 2 more comments
vote up 1 vote down

I'd like a more complete standard library for using synchronous and asynchronous networking/multithreading. There are a pletora of such a libraries (boost, QT, glib) but they are heterogeneous and not so immediately usable. It would be very nice if the core of such libraries will be standardized and built-in in the language.

link|flag
vote up 1 vote down
  • Keyword arguments.
  • Unify pointers and references.
  • Standard garbage collector.

[Edit]

  • An idiomatic way of creating namespaces, like packages in Python and Java.
link|flag
show 2 more comments
vote up 1 vote down
  • Removal of all undefined behaviors.

  • A regular, clean and unambiguous syntax allowing us to:

    • write C++ parsers easily.
    • have proper code analysis and refactoring tools.
    • better compilation times.
  • Allow compilation of templates in an intermediate form so that:

    • they can be delivered within binary libraries.
    • compilation goes faster (C++ is probably the slowest language to compile in the world... err.. universe).
  • Removal of dead features:

    • exception declarations other than throw ()
  • Some ML features such as:

    • sum types: enums on steroids.
    • pattern matching: switch case on steroids.
    • phantom types: const on steroids.
link|flag
show 2 more comments
1 2 next

Your Answer

Get an OpenID
or

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