CSC/ECE 517 Fall 2009/wiki1b 1 ch: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 7: Line 7:
==Tools==
==Tools==


===Breakpoints===
===Eclipse===
IBM developed Eclipse in the late 1990s and turned it over in 2001 to the nonprofit Eclipse Foundation. It became an open-source platform which enabled anyone to build applications using the technology. Eclipse is a popular choice, especially among Java developers, and often compared to NetBeans.
 
===NetBeans===
NetBeans is an open-source IDE developed in Java using the NetBeans Platform. NetBeans offer bundles for specific development needs, such as Java EE, Ruby, PHP, and C/C++.
 
==Debugging in Eclipse and NetBeans==
Eclipse and NetBeans come with debugging facilities, such as running and stopping the program, setting up breakpoints, keeping track of variables' value, watchpoint, hit count, etc. A tutorial for Java debugging with Eclipse can be found [http://www.vogella.de/articles/EclipseDebugging/article.html here].


==Advanced Debugging==
==Advanced Debugging==

Revision as of 15:17, 22 September 2009

Debuggers have been around for at least 35 years, but the debuggers in NetBeans and Eclipse took debugging to a new level by integrating it with a large number of facilities for writing code. Describe the advances in debugging during this decade, taking into account (i) the academic literature, (ii) debugging in commercial development environments, and (iii) debugging and open source.

Background

Debuggers are software tools used by software developers to find and eliminate bugs. They allow the developers to examine the code in details, run through them line by line, checking variables' value at a specific point, etc. Debugging tools, such as Eclipse and NetBeans, have have become more sophisticated over the past decade. These IDEs are not only equipped with build in capabilities for debugging, but also serve as platforms for plug-in tools that extend their capabilities.

Tools

Eclipse

IBM developed Eclipse in the late 1990s and turned it over in 2001 to the nonprofit Eclipse Foundation. It became an open-source platform which enabled anyone to build applications using the technology. Eclipse is a popular choice, especially among Java developers, and often compared to NetBeans.

NetBeans

NetBeans is an open-source IDE developed in Java using the NetBeans Platform. NetBeans offer bundles for specific development needs, such as Java EE, Ruby, PHP, and C/C++.

Debugging in Eclipse and NetBeans

Eclipse and NetBeans come with debugging facilities, such as running and stopping the program, setting up breakpoints, keeping track of variables' value, watchpoint, hit count, etc. A tutorial for Java debugging with Eclipse can be found here.

Advanced Debugging

See Also

Notes

References

Further Reading