Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Integrated development environment

From Wikipedia, the free encyclopedia
(Redirected fromProgramming environment)
Software engineering toolkit
It has been suggested that this article bemerged intoBuild system (software development). (Discuss) Proposed since May 2025.
This article is about software development. For the PC storage connector, seeParallel ATA.

An integrated development environment running on a desktop operating system
Part of a series on
Software development

Anintegrated development environment (IDE) is asoftware application that provides comprehensive facilities forsoftware development. An IDE normally consists of at least asource-code editor,build automation tools, and adebugger. Some IDEs, such asIntelliJ IDEA,Eclipse andLazarus contain the necessarycompiler,interpreter or both; others, such asSharpDevelop andNetBeans, do not.

The boundary between an IDE and other parts of the broader software development environment is not well-defined; sometimes aversion control system or various tools to simplify the construction of agraphical user interface (GUI) are integrated. Many modern IDEs also have aclass browser, anobject browser, and aclass hierarchy diagram for use inobject-oriented software development.

Overview

[edit]
Vim with integrated auto-completion and linting through an external plugin

Integrated development environments are designed to maximize programmer productivity by providing tight-knit components with similaruser interfaces. IDEs present a single program in which all development is done. This program typically provides many features for authoring, modifying, compiling, deploying and debugging software. This contrasts with software development using unrelated tools, such asvi,GDB,GNU Compiler Collection, ormake.

One aim of the IDE is to reduce the configuration necessary to piece together multiple development utilities. Instead, it provides the same set of capabilities as one cohesive unit. Reducing setup time can increase developer productivity, especially in cases where learning to use the IDE is faster than manually integrating and learning all of the individual tools. Tighter integration of all development tasks has the potential to improve overall productivity beyond just helping with setup tasks. For example, code can be continuously parsed while it is being edited, providing instant feedback when syntax errors are introduced, thus allowing developers to debug code much faster and more easily with an IDE.

Some IDEs are dedicated to a specificprogramming language, allowing a feature set that most closely matches theprogramming paradigms of the language. However, there are many multiple-language IDEs.

While most modern IDEs are graphical, text-based IDEs such asTurbo Pascal were in popular use before the availability of windowing systems likeMicrosoft Windows and theX Window System (X11). They commonly use function keys orhotkeys to execute frequently used commands or macros.

History

[edit]
GNU Emacs, an extensible editor that is commonly used as an IDE onUnix-like systems

IDEs initially became possible when developing via aconsole orterminal. Early systems could not support one, since programs were submitted to acompiler orassembler viapunched cards,paper tape, etc.Dartmouth BASIC was the first language to be created with an IDE (and was also the first to be designed for use while sitting in front of a console or terminal).[citation needed] Its IDE (part of theDartmouth Time-Sharing System) was command-based, and therefore did not look much like the menu-driven, graphical IDEs popular after the advent of thegraphical user interface. However it integrated editing, file management, compilation, debugging and execution in a manner consistent with a modern IDE.

Maestro I is a product from Softlab Munich and was the world's first integrated development environment[1] for software.Maestro I was installed for 22,000 programmers worldwide. Until 1989, 6,000 installations existed in theFederal Republic of Germany. Maestro was arguably the world leader in this field during the 1970s and 1980s. Today one of the last Maestro I can be found in the Museum of Information Technology at Arlington in Texas.

One of the first IDEs with a plug-in concept wasSoftbench. In 1995Computerwoche commented that the use of an IDE was not well received by developers since it would fence in their creativity.

As of August 2023[update], the most commonly searched for IDEs onGoogle Search wereVisual Studio,Visual Studio Code, andEclipse.[2]

Topics

[edit]

Syntax highlighting

[edit]
Main article:Syntax highlighting

The IDE editor usually providessyntax highlighting, it can show both the structures, the language keywords and the syntax errors with visually distinct colors and font effects.[3]

Code completion

[edit]

Code completion is an important IDE feature, intended to speed up programming. Modern IDEs even haveintelligent code completion.

Intelligent code completion

[edit]
This section is an excerpt fromCode completion.[edit]
Code completion inVisual Studio 2008

Code completion is anautocompletion feature in many integrated development environments (IDEs) that speeds up the process of coding applications by fixing common mistakes and suggesting lines of code. This usually happens through popups while typing, querying parameters of functions, and query hints related to syntax errors. Code completion and related tools serve as documentation and disambiguation forvariable names,functions, andmethods, usingstatic analysis.[4][5]

The feature appears in many programming environments.[6][7] Implementations include IntelliSense inVisual Studio Code. The term was originally popularized as "picklist" and some implementations still refer to it as such.[8]

Refactoring

[edit]

Advanced IDEs provide support forautomated refactoring.[3]

Version control

[edit]

An IDE is expected to provide integratedversion control, in order to interact with source repositories.[3]

Debugging

[edit]

IDEs are also used for debugging, using an integrateddebugger, with support for setting breakpoints in the editor, visual rendering of steps, etc.[9]

Code search

[edit]

IDEs may provide support for code search. Code search has two different meanings. First, it means searching for class and function declarations, usages, variable and field read/write, etc. IDEs can use different kinds of user interface for code search, for example form-based widgets[10] and natural-language based interfaces.Second, it means searching for a concrete implementation of some specified functionality.[11]

Visual programming

[edit]

Visual programming is a usage scenario in which an IDE is generally required. Visual Basic allows users to create new applications by moving programming, building blocks, or code nodes to create flowcharts or structure diagrams that are then compiled or interpreted. These flowcharts often are based on theUnified Modeling Language.

This interface has been popularized with theLego Mindstorms system and is being actively perused by a number of companies wishing to capitalize on the power of custom browsers like those found atMozilla.KTechlab supports flowcode and is a popular open-source IDE and Simulator for developing software for microcontrollers. Visual programming is also responsible for the power ofdistributed programming (cf.LabVIEW and EICASLAB software).[clarification needed] An early visual programming system,Max, was modeled after an analogsynthesizer design and has been used to develop real-time music performance software since the 1980s. Another early example wasPrograph, adataflow-based system originally developed for theMacintosh. The graphical programming environment "GRAPE" is used to programqfix robot kits.

This approach is also used in specialist software such as Openlab,[clarification needed] where the end-users want the flexibility of a full programming language, without the traditional learning curve associated with one.

Language support

[edit]

Some IDEs support multiple languages, such asGNU Emacs,IntelliJ IDEA,Eclipse,MyEclipse,NetBeans,MonoDevelop, JDoodle or PlayCode.

Support for alternative languages is often provided byplugins, allowing them to be installed on the same IDE at the same time. For example,Flycheck is a modern on-the-fly syntax checking extension forGNU Emacs 24 with support for 39 languages.[12] Another example is JDoodle, an online cloud-based IDE that supports 88 languages.[1]Eclipse, andNetbeans have plugins forC/C++,Ada,GNAT (for exampleAdaGIDE),Perl,Python,Ruby, andPHP, which are selected between automatically based on file extension, environment or project settings.

Implementation

[edit]

IDEs can be implemented in various languages, for example:

Attitudes across different computing platforms

[edit]

Unix programmers can combinecommand-linePOSIX tools into a complete development environment, capable of developing large programs such as theLinux kernel and its environment.[13] In this sense, the entire Unix system functions as an IDE.[14] The free softwareGNU toolchain (includingGNU Compiler Collection (GCC),GNU Debugger (GDB), andGNU make) is available on many platforms, including Windows.[15] The pervasive Unix philosophy of "everything is a text stream" enables developers who favorcommand-line oriented tools to use editors with support for many of the standard Unix and GNU build tools, building an IDE with programs likeEmacs[16][17][18]orVim.Data Display Debugger is intended to be an advanced graphical front-end for many text-baseddebugger standard tools. Some programmers prefer managingmakefiles and their derivatives to the similar code building tools included in a full IDE. For example, most contributors to thePostgreSQL database usemake andGDB directly to develop new features.[19] Even when building PostgreSQL forMicrosoft Windows usingVisual C++,Perl scripts are used as a replacement formake rather than relying on any IDE features.[20] Some Linux IDEs such asGeany attempt to provide a graphical front end to traditional build operations.

On the variousMicrosoft Windows platforms, command-line tools for development are seldom used. Accordingly, there are many commercial and non-commercial products. However, each has a different design commonly creating incompatibilities. Most major compiler vendors for Windows still provide free copies of their command-line tools, includingMicrosoft (Visual C++,Platform SDK,.NET Framework SDK,nmake utility).

IDEs have always been popular on the Apple Macintosh'sclassic Mac OS andmacOS, dating back toMacintosh Programmer's Workshop,Turbo Pascal, THINK Pascal andTHINK C environments of the mid-1980s. Currently macOS programmers can choose between native IDEs likeXcode and open-source tools such asEclipse andNetbeans.ActiveState Komodo is a proprietary multilanguage IDE supported on macOS.

Online

[edit]
Main article:Online integrated development environment

Anonline integrated development environment, also known as a web IDE or cloud IDE, is abrowser based IDE that allows for software development or web development.[21] An online IDE can be accessed from a web browser, allowing for a portable work environment. An online IDE does not usually contain all of the same features as a traditional or desktop IDE although all of the basic IDE features, such as syntax highlighting, are typically present.

A Mobile-Based Integrated Development Environment (IDE) is a software application that provides a comprehensive suite of tools for software development on mobile platforms. Unlike traditional desktop IDEs, mobile-based IDEs are designed to run on smartphones and tablets, allowing developers to write, debug, and deploy code directly from their mobile devices.

See also

[edit]
Wikimedia Commons has media related toIntegrated development environments.

References

[edit]
  1. ^"Interaktives Programmieren als Systems-Schlager" fromComputerwoche (German)
  2. ^"TOP IDE Top Integrated Development Environment index".pypl.github.io. Retrieved8 August 2023.
  3. ^abc"Course CS350 Integrated Development Environments".cs.odu.edu. Old Dominion University. Retrieved10 October 2018.
  4. ^Robbes, Romain; Lanza, Michele (2008). "How Program History Can Improve Code Completion".2008 23rd IEEE/ACM International Conference on Automated Software Engineering. pp. 317–326.doi:10.1109/ASE.2008.42.ISBN 978-1-4244-2187-9.S2CID 2093640.
  5. ^"Code Completion, Episode 1: Scenarios and Requirements".The JetBrains Blog. 28 May 2021. Retrieved17 November 2023.
  6. ^FAQ - CodeBlocks. Wiki.codeblocks.org (2014-02-01). Retrieved on 2014-04-04.
  7. ^Qt Documentation - Completing Code. Retrieved on 2015-07-07.
  8. ^Using Dynamic Apex to retrieve Picklist Values | Developer Force Blog. Blogs.developerforce.com (2008-12-09). Retrieved on 2014-04-04.
  9. ^"Programming software and the IDE".BBC Bitesize. Archived fromthe original on 9 October 2018. Retrieved10 October 2018.
  10. ^"Eclipse Cookbook - Searching Code".O’Reilly.
  11. ^Stolee, Kathryn T.; Elbaum, Sebastian; Dobos, Daniel (2014)."Solving the Search for Source Code".ACM Transactions on Software Engineering and Methodology.23 (3):1–45.doi:10.1145/2581377.ISSN 1049-331X.S2CID 8558710.
  12. ^"Introduction - Flycheck 0.18-cvs".Read the Docs. Archived fromthe original on 10 March 2014. Retrieved10 March 2014.
  13. ^Rehman, Christopher Paul, Christopher R. Paul."The Linux Development Platform: Configuring, Using and Maintaining a Complete Programming Environment".2002.ISBN 0-13-009115-4
  14. ^"UnixIsAnIde".
  15. ^""Use Emacs with Microsoft Visual C++ ... use Emacs as an IDE"". Archived fromthe original on 4 July 2013.
  16. ^"Emacs: the Free Software IDE | Linux Journal".www.linuxjournal.com.
  17. ^"The Common Lisp Cookbook - Using Emacs as a Lisp IDE".cl-cookbook.sourceforge.net.
  18. ^"Emacs as a Perl IDE".obsidianrook.com. Archived fromthe original on 21 May 2016. Retrieved11 May 2011.
  19. ^"Developer FAQ - PostgreSQL wiki".wiki.postgresql.org.
  20. ^"Chapter 18. Installation from Source Code on Windows".PostgreSQL Documentation. 29 September 2021.
  21. ^"Web-based vs. desktop-based Tools – EclipseSource".eclipsesource.com. 19 June 2018.
C,C++
Open source
Freeware
Retail
Discontinued
Java
Open source
Freeware
Retail
Discontinued
JavaScript
Open source
CLI (.NET)
Open source
Freeware
Retail
Discontinued
Flash
PHP
Open source
Proprietary
R
Python
Open source
Proprietary
Pascal,
Object Pascal
Open source
Freeware
Retail
Discontinued
BASIC
Open source
Freeware
Retail
Discontinued
Go
Open source
Freeware
Retail
Eiffel
Haxe
POP-11
Online
Note: This template roughly follows the 2012ACM Computing Classification System.
Hardware
Computer systems organization
Networks
Software organization
Software notations andtools
Software development
Theory of computation
Algorithms
Mathematics ofcomputing
Information systems
Security
Human–centered computing
Concurrency
Artificial intelligence
Machine learning
Graphics
Applied computing
Retrieved from "https://en.wikipedia.org/w/index.php?title=Integrated_development_environment&oldid=1300004695"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp