7 ms·
Yep,the language it self became a problem.The designer and experts should(Which I hope) make the language easy to use without any mental burden.
by alextooter 10y ago
Yep,the language it self became a problem.The designer and experts should(Which I hope) make the language easy to use without any mental burden.
- andrepd 10y agoMake the language easy to use without any mental burden? But you do realize programming is not easy, especially when you're aiming for high performance. How can you make a language easy to use "without any mental burden"? Programming is hard, programming well and with performance in mind is even more so. Some things you just can't magically make easy.
- bluetomcat 10y agoYou can program with "performance in mind" in C and the big difference will be that the problem itself will be the obstruction, not the language. In C++, you fight with the language first and then face the problem.
- criddell 10y agoWhat fight are you having with C++?
- bstamour 10y agoI actually feel the exact opposite when I program in C. C is so bare that most of my time is spent building the correct constructs I need to solve my problem. C++ on the other hand has a decent set of high level features that makes it easier for me to focus on the problem.
- adrianN 10y agoYou can write a C++ program to solve a problem that looks almost exactly like the C program you would write. But C++ brings a couple of nice features, like resource management with constructors/destructors and type-safe data structures that you just can't have in C.
- andrepd 10y agoHow can that be true, if C++ is (almost) a superset of C? Surely you can do anything in C++ identically to C, in the worst case scenario.