Is it recommended to use IDE for C++ programming?

Asked

Viewed 684 times

1

When I was learning C I was programming using a text editor and a compiler, but since C++ is POO-facing maybe an IDE will help although I haven’t been much in favor of IDE’s. I would like to "listen" to your opinion because I am really undecided. Thank you for your attention.

  • 1

    It depends man, I know people who show up at Otepad and are happy, while there are people who don’t live without IDE, go for it, after all, whatever. I particularly use IDE for C#, but for Front-End I use Otepad even.

  • 1

    Your question implies answers based on personal opinions, so it is outside the scope of the site.

  • Related http://answall.com/q/15794/101

1 answer

6

  1. When using a good IDE, you will see several errors and warnings more easily:

Ponto 1

  1. The IDE may suggest functions and parameters, showing you the appropriate formats of these:

Ponto 2

  1. In addition, the IDE will already prepare ready-made build scripts and organize your source and header files automatically, so you can start coding immediately. For example, the following build I just did without having to set up a single comma of configuration script or Makefile, was all generated by the IDE:

Ponto 3

Anyway, whether or not to use IDE is a matter of personal taste, and I know a lot of people who prefer not to use it and a lot of people who won’t give up using it. It is not the opinion of people against or in favour that will tell you what your experience will be like, because that is something that depends very much on personal taste. However, I would point out that the Ides were designed by very smart people in order to optimize the programming experience, making the programmer more productive, and so it is worth at least trying to decide whether or not you prefer to use an IDE. Also, if you don’t like one particular IDE, another might suit your taste, since there are several different Ides available for C++.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.