JonaGik
JonaGik

Reputation: 1573

Choosing and using an IDE

I've been using Visual Studio 2010 for C++ development for a while but I'd like to move to an open source option. I'm considering using Eclipse C++. Are there any problems with it that I should know about? Also, I want to develop GUI applications. Presumably Eclipse allows this but I can't find any documentation on it (surprisingly)?

Can someone please point me in the right direction for starting with Eclipse?

Thanks for your help.

Upvotes: 1

Views: 164

Answers (2)

Duc Tran
Duc Tran

Reputation: 6294

Netbeans is better and faster than Eclipse in coding C++. that's my personal opinion

Upvotes: 1

rubenvb
rubenvb

Reputation: 76519

I was about to close this as a duplicate shopping question, but the GUI part is what stopped me.

You have two very good options:

  1. Qt Creator: integrated version control, debugger support and Qt GUI editor.

  2. Code::Blocks: integrated debugger, some plugins and a wxWidgets GUI editor.

Upvotes: 2

Related Questions