|
Overview Using IntelliSense is a convenient way to access descriptions of functions, particularly their parameter lists. It allows significantly faster software development by easing the amount of keyboard input required. It also allows less reference to external documentation as documentation on many functions appears with the function name. The feature works by accessing an automatically generated in-memory database of classes, variable names and other constructs defined in or referenced by the application being edited. The "classic" implementation of IntelliSense works by detecting marker characters such as a period, which depend on the language used. As the user types one of these marker characters immediately after the name of an entity that has one or more accessible members (such as contained variables or functions), IntelliSense starts suggesting matches with a pop-up window. The user can either accept the suggestion by typing a statement completion character ( This feature is included in all the latest versions of Visual Studio. IntelliSense supports C++,C#,J#, Visual Basic, XML, HTML and XSLT among others. Other Microsoft products that incorporate IntelliSense include FrontPage (in code view), the VBA IDEs in the Microsoft Office products and many others. Originating with Microsoft, the idea has been widely replicated in many other source code editors. For example, as of version 7.0, Vim now supports autocompletion. Many editors and IDEs that incorporate functionality equal to or similar to IntelliSense utilize ctags to create their context word lists (UltraEdit is one of them). Others like the Borland and Sun Microsystems IDEs use internal reflection databases. Example (CSharp|C#) Assume an application has a class Foo with some member functions:
When the developer references this class in source code, e.g.:
as soon as the user types the period after myFoo, IntelliSense automatically lists all the available member functions (i.e. Bar() and FooBar()). The user can then select one by using the arrow keys and hitting a completion character when the correct member function is highlighted. When available, IntelliSense displays a short description of the member function as given in the source code documentation. IntelliSense goes further by indicating the required parameters in another pop-up window as the user fills in the parameters. As the user types a variable name, the feature also makes suggestions to complete the variable as they are typed. IntelliSense continues to show parameters, highlighting the pertinent one, as the user types. The user can "force" IntelliSense to show its pop-up list without context by using History IntelliSense was first introduced as a feature of a mainstream Microsoft product in 1996, with the Visual Basic 5.0 Control Creation Edition, which was essentially a publicly-available prototype for Visual Basic 5.0. Although initially the primary "test bed" for the technology was the Visual Basic IDE, IntelliSense was quickly incorporated into Visual FoxPro and Visual C++ in the Visual Studio 97 timeframe (one revision after it was first seen in Visual Basic). Because it was based on the introspection capabilities of COM, the Visual Basic versions of IntelliSense were always more robust and complete than the 5.0 and 6.0 (97 and 98 in the Visual Studio naming sequence) versions of Visual C++, which did not have the benefit of being entirely based on COM. These shortcomings (criticized by many VC++ developers since the 97 release) have been largely corrected in the post-.NET product lines. For example, one of the most requested capabilities missing from the pre-.NET products was support for templates, which is now fully implemented. IntelliSense has entered a new phase of development with the unified Visual Studio.NET environment first released in 2001, augmented by the more powerful introspection and code documentation capabilities provided by the .NET framework. As of Visual Studio 2005, IntelliSense is now activated by default when the user begins to type, instead of requiring marker characters (although this behavior can be turned off). The IDE has the capability of inferring a greater amount of context based on what the developer is typing, to the point that basic language constructs such as for and while are also included in the choice list. | ||||||||||
|
| |||||||||||
![]() |
|
| |