Want to read Slashdot from your mobile device? Point it at m.slashdot.org and keep reading!

 



Forgot your password?
typodupeerror
×
Technology

Journal pyrrho's Journal: C++ vs. the world 2

I strongly believe one should use the best tool for the job. When I work on a project, I don't want to rewrite it in my favorite language... BUT!

What can scripting languages really offer that a good class system can't? People talk about doing something in Python with ten lines that takes months in C/C++. Pardon? Isn't that because the thing you are writing has already been written? You are just instantiating it! And this is true in C++ as well. I mean... look at me... I can write a web server with no lines of code... I just compile apache!

Seriously, there are class systems that can do a lot of the work.

It's the same with GUI stuff... VB is easier... supposedly, for some, but in reality, the whole draw your dialog box and click on the buttons to write code for them works just as "well" in C++ using MFC and MS code wizards as it works in VB. IOW, it sucks in both, but if it's useful (because you are throwing something together, for example), what is the advantage of VB? You get to learn a poorly formed verbose syntax instead of the C/C++ syntax?

This discussion has been archived. No new comments can be posted.

C++ vs. the world

Comments Filter:

"More software projects have gone awry for lack of calendar time than for all other causes combined." -- Fred Brooks, Jr., _The Mythical Man Month_

Working...