[try Beta version]
Not logged in

 
C++ IDE

Pages: 12
Nov 8, 2013 at 11:16am
Haven't seen one of this in a while, so.

What is your favorite IDE for C++

Mine is Eclipse with CDT installed + Sublime 3 when I only need to edit(altought its not an IDE)

EDIT: Don't forget to say why!
Last edited on Nov 8, 2013 at 11:22am
Nov 8, 2013 at 11:17am
visual C++ & codeBlocks
Nov 8, 2013 at 12:20pm
codeblocks -> the code completion feature is my favorite !!!
Nov 8, 2013 at 12:26pm
Visual Studio in Windows, QtCreator everywhere else.
Nov 8, 2013 at 12:28pm
vim (and makefiles)
I'm starting to believe. Some of the plugins are just fantastic.
Nov 8, 2013 at 12:56pm
MSVS2010+ and eclipse derivations.
Nov 8, 2013 at 1:07pm
shadow fiend wrote:
codeblocks -> the code completion feature is my favorite !!!


Really?! Try one of this:

QtCreator
Eclipse CDT
MSVS

and you'll see what auto-complete is. Code::Blocks auto-complete is the crappiest one there is.
Nov 8, 2013 at 2:12pm
well not really my favorite, honestly i've only used very few ide's and so far code::blocks seems to be the fastest and easiest to use and for me is just right for a student ( since my pc is crap and i don't like to waste my bandwidth downloading a 600MB iso )
Nov 8, 2013 at 2:24pm
Then use QtCreator or Eclipse CDT. They are 1000x better!!
Nov 8, 2013 at 6:07pm
NetBeans. LOVE IT.

I like that you can modify the compiler commands more directly too... really nice.
Last edited on Nov 8, 2013 at 6:08pm
Nov 8, 2013 at 6:25pm
I personally use QtCreator. The Qt development tools and inclusion of signals/slots in code completion are quite nice, it's quite lightweight, its UI is simple and intuitive, and it has a nice extensible architecture.

-Albatross
Nov 8, 2013 at 6:42pm
I'm kind of irregular when it comes to IDE's for a while I was a QtCreator fanboy than i switched to Eclipse and now I use sublime ( I know it's not an IDE ). Honestly I'm thinking of switching back to Qt because I use a netbook and Eclipse is too heavy.
Nov 8, 2013 at 7:22pm
For C++ I bounce around Code::Blocks, Qt Creator, Sublime 2, and Geany. For editors I use emacs, nano, and vim. Just mainly depends on what time of day it is and where I am as to which one I use.
Nov 8, 2013 at 7:32pm
http://xkcd.com/378/

"REAL programmers use a magnetized needle and a steady hand."
Nov 8, 2013 at 7:35pm
@IWishIKnew
I'm pretty sure all REAL programmers have an emacs command for that, which gets used slightly less often than C-x M-c M-butterfly. :P

-Albatross
Nov 8, 2013 at 7:37pm
"DAMN E-Macs..." - Facepalm -

lol
Last edited on Nov 8, 2013 at 7:38pm
Nov 8, 2013 at 8:05pm
How heavy is QT creator? I actually think I might switch to it so that I can build GUIs!!!

Also, how easy is it to build GUIs with QT creator? I have never been able to successfully get a GUI library up and running... Is QT creator going to be easy to understand?
Nov 8, 2013 at 8:11pm
Qt Creator is what I'd call a medium-weight IDE. It's really not that heavy at all, but it's not super-light either.

It's really not that difficult to design GUIs in it. The graphical GUI editor can take care of most of the code generation for you, but there's always the option to dive in and chance things yourself in a subclass from the generated code that it provides.

And yes, it's pretty easy to understand, but more advanced options are there if you want to play with them.

-Albatross
Nov 8, 2013 at 8:17pm
Do I have to re-install my compiler/change my compiler? I have minGW and Boost set up quite nicely and I don't want to change that...

Will QT make me change my compiler in any way?
Nov 8, 2013 at 8:19pm
No, it will use the one you already have.
Pages: 12