Hacker News new | ask | show | jobs
by uecker 138 days ago
This seems orthogonal to std::string. People who pick C do not want automatic memory management, but might want better strings.
1 comments

Automatic memory management is literally what makes them better
For many string operations such as appending, inserting, overwriting etc. the memory management can be made automatic as well in C, and I think this is the main advantage. Just automatic free at scope end does not work (without extensions).
You can make strings (or bignums or matrices) more convenient than the C default but you can never make them as convenient as ints, while in C++ you can.
Yes, but I do not think this is a good thing. A programming language has to fulfill many requirements, and convenience for the programmer is not the most important.
Empirically it is. All the most used languages are the most convenient ones.