Difference between revisions of "Integrated Development Environment (IDE)"

esse quam videri
Jump to: navigation, search
(Definition)
(Relevance)
Line 10: Line 10:
 
=Relevance=
 
=Relevance=
 
As a programmer, the use of an IDE is extremely beneficial since you do not have to spread a project out between a myriad of different applications in order to complete it.
 
As a programmer, the use of an IDE is extremely beneficial since you do not have to spread a project out between a myriad of different applications in order to complete it.
 +
 +
Not only that, but an IDE can also help in the process of debugging, as most of them have a syntax error highlighting system and a method in which programmers can go step-by-step through their code as it runs.
  
 
=Explanation=
 
=Explanation=

Revision as of 22:03, 4 February 2020

Definition

An IDE, or Integrated Development Environment, is an application that provides computer programmers a comprehensive set of tools for software development in order to boost productivity.

Most IDEs have a source code editor, a compiler, an interpreter, tools for debugging, syntax highlighting, and a method to create builds for finished software. However, not every IDE has all of the aforementioned features.

Many of the currently popular IDEs also have features specifically for use with an Object-Oriented paradigm, such as a class browser, object browser, and UML diagram generators.

Relevance

As a programmer, the use of an IDE is extremely beneficial since you do not have to spread a project out between a myriad of different applications in order to complete it.

Not only that, but an IDE can also help in the process of debugging, as most of them have a syntax error highlighting system and a method in which programmers can go step-by-step through their code as it runs.

Explanation

Resources

Example IDEs:

- Visual Studio

- Visual Studio Code

- Repl.it

- Wing

- MonoDevelop

See also


Notes

External Links