C++ IDE

Associate
Joined
16 Dec 2006
Posts
114
Location
UK
I'm an experienced Java, Javascript, PHP and XHTML/CSS programmer and now I'm looking for a decent IDE to use to begin C++ programming. I use netbeans for Java, which is excellent. For now, you can assume money is not a problem, as i get most software free from the university!

Thanks.
 
Which OS are you using, if windows then you might as well just use MS Visual Studio as said, it is very well designed and a top notch IDE imo, they also have a free express edition of it.

If you are on Linux KDevelop, Eclipse or Anjunta are all pretty good.
 
Visual Studio on Windows. The MS compiler is pretty good, too.
I use VS on Windows and XCode on OS X (which is pretty good too, though VS beats it)
Haven't found one I like on Linux, Code::Blocks was probably the best I tried.
 
Although for most issues it is perfectly acceptable to use MS products for development, I really suggest that for someone who has a lot of programming experience, that you try to go the GNU direction with c++.

I fully understand the advantages of using a powerful IDE such Visual C++, however, imho it is *too powerful* at hiding away lots of serious details, such as compile and build options, while providing none of the serious multi-platform tools that most open source projects take advantage of these days. Projects such as Firefox build effortlessly on multiple targets because they make use of GNU autotools, which is pretty much the most advanced build system in the world.

So whilst I recommend VC++ as a nice piece of c++ programming software (auto complete etc) I wouldn't recommend it for the serious developer who wants platform independance. I would recommend using Eclipse on linux. You don't have to make your code open source, you can do whatever you want - but you will have a great deal more control and flexibility, not to mention future proofing, in this way. Not to mention, that if you did want to go open source, there are about 8 million seriously powerful projects that are available to support your application, OpenSG/OpenGL, libcURL, libxml/xerces, GTK, etc etc, which might also work on windows but are generally a pain because of the way windows is set up.

Just a thought, anyway, I'm not a complete evangelist ^^.
 
Thanks for all the responses, great stuff. Think i will try them all out, eclipse for linux box, Visual Studio for PC, and i already have Xcode on my mac. Then i'll decide which one im getting on best with.
 
Back
Top Bottom