Difference between revisions of "Integrated development environment"
Karl Jones (Talk | contribs) (First) |
Karl Jones (Talk | contribs) |
||
(6 intermediate revisions by 2 users not shown) | |||
Line 13: | Line 13: | ||
The boundary between an integrated development environment and other parts of the broader [[software development environment]] is not well-defined. | The boundary between an integrated development environment and other parts of the broader [[software development environment]] is not well-defined. | ||
− | Sometimes a version control system, or various tools to simplify the construction of a [[Graphical | + | Sometimes a version control system, or various tools to simplify the construction of a [[Graphical user interface]] (GUI), are integrated. |
Many modern IDEs also have a [[class browser]], an [[object browser]], and a [[class hierarchy diagram]], for use in [[object-oriented software development]]. | Many modern IDEs also have a [[class browser]], an [[object browser]], and a [[class hierarchy diagram]], for use in [[object-oriented software development]]. | ||
Line 20: | Line 20: | ||
* [[Computer programming]] | * [[Computer programming]] | ||
+ | * [[Docker]] | ||
+ | * [[Graphical user interface]] | ||
+ | * [[.NET Framework]] | ||
+ | * [[Revision control]] | ||
+ | * [[Software development]] | ||
+ | * [[Software development kit]] | ||
+ | * [[Software development process]] | ||
== External links == | == External links == | ||
* [https://en.wikipedia.org/wiki/Integrated_development_environment Integrated development environment] @ Wikipedia | * [https://en.wikipedia.org/wiki/Integrated_development_environment Integrated development environment] @ Wikipedia | ||
+ | |||
+ | [[Category:Computer programming]] | ||
+ | [[Category:Computer science]] | ||
+ | [[Category:Software]] | ||
+ | [[Category:Software development]] |
Latest revision as of 07:53, 4 October 2016
An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development.
Description
An IDE normally consists of a source code editor, build automation tools and a debugger. Most modern IDEs have intelligent code completion.
Some IDEs contain a compiler, interpreter (computing), or both, such as NetBeans and Eclipse.
Others do not, such as SharpDevelop and Lazarus.
Software development environment
The boundary between an integrated development environment and other parts of the broader software development environment is not well-defined.
Sometimes a version control system, or various tools to simplify the construction of a Graphical user interface (GUI), are integrated.
Many modern IDEs also have a class browser, an object browser, and a class hierarchy diagram, for use in object-oriented software development.
See also
- Computer programming
- Docker
- Graphical user interface
- .NET Framework
- Revision control
- Software development
- Software development kit
- Software development process
External links
- Integrated development environment @ Wikipedia