IDEs - Other ( C++ , Delphi, RUBY,...)
IDE combines the editor, compiler and other useful tools in the same software package. Its advantage is that when a program with syntax errors is compiled, the programmer sees the error messages and the original program at the same time -- this makes debugging much easier. Also, some IDEs contain debuggers. Visual J++, VisualAge for C++ or Java, Java WorkShop, and Visual Caf�?�© are IDEs.
From :www.course.com/careers/glossary/programming.cfm
RHIDE
RHIDE is an IDE (integrated development environment). It is NOT a compiler. With RHIDE you can develop and debug your applications written in C, C++, Pascal and other languages for which you have a compiler which can be called from RHIDE.
Features of this IDE are:
Syntax highlighting is now supported and you can customize all colors on your desktop.
You can redirect the stdout and stderr from your program to a window in the IDE.
You can generate a makefile for your project, so you can build the program also without the IDE.
Most of the commandline options of GCC can be customized.
You can also build a library instead of an executable.
When saving a file to disk, the modification time of this file will be set to the time of the last modification in the editor.
You can interrupt external programs (the compilers or your program) by pressing Ctrl+C or Ctrl+Break which are ignored by the IDE. That means also, that you cannot interrupt the IDE by pressing these keys. If you want to enable this, compile the IDE without the `-DNO_BREAK'-flag.
The integrated debugger. You can debug your program within RHIDE by executing each source line of your code and evaluating/modifying variables and expressions.
You can define another compiler to compile your source files.
visit
RHIDE
RHIDE was visited : 65 times
Loading .....