Java Framework IDE

Hi everyone, please tell me the difference between the IDE and FRAMEWORK, suppose I use eclipse (for java) by default, which I am following.

+3
source share
4 answers

IDE stands for an integrated development environment and a tool that allows you to program in a specific language and usually includes an integrated compiler, debugger, syntax highlighting and various other tools that allow you to quickly develop applications. For instance. Eclipse IDE, Visual Studio, Netbeans IDE.

A structure is a library or set of classes that simplify the implementation of a particular type of application and are typically deployed with your application. It usually provides a structure that you need to join, and various helper classes. For instance. Spring Framework, .Net MVC, Struts, etc.

+4
source

IDE - development environment, editor, where you usually write code. It may also include a compiler, a debugger, ... A frame is a collection of reusable libraries or classes that you could use in your code.

+1
source

IDE (eclipse, netbeans) (eclipse RCP, netbeans RCP), (Java) () IDE .

0

IDE (, Eclipse, NetBeans, IntelliJ ..), , , , (, ) (/ , ).

- , (, ) . , .. , ( , ). , (, , ..), , . - , . .

0

Source: https://habr.com/ru/post/1777395/


All Articles