Java 框架集成开发环境

发布于 2024-10-05 02:42:19 字数 61 浏览 0 评论 0原文

大家好,请告诉我 IDE 和框架之间的区别,假设我默认使用 eclipse(对于 java),遵循哪个框架。

Hi anybody please tell me the difference between IDE and a FRAMEWORK ,suppose that am using eclipse (for java) by default which framework am following.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

单身情人 2024-10-12 02:42:20

IDE 是一种图形桌面应用程序(例如 Eclipse、NetBeans、IntelliJ 等),可帮助您创建、运行、测试、调试和管理(例如版本控制)源文件(生产/测试代码、资源和文档) 。

框架是第三方代码,它确定您自己的源代码的某些部分(可能是全部)的结构。您一个框架内工作,即您遵循其规则,享受其好处,并承受其限制(尽管一个好的框架提供了扩展点来最大限度地减少这些限制)。将此与库进行对比,库是代码单元(例如函数、类等)的集合,您可以根据需要从中提取,但不限制您自己的代码的结构。使用框架是比使用库更大的架构决策。典型的企业项目将使用一个或多个框架和多个库。

An IDE is a graphical desktop application (e.g. Eclipse, NetBeans, IntelliJ, etc.) that helps you create, run, test, debug, and manage (e.g. version control) your source files (production/test code, resources, and documentation).

A framework is third-party code that determines the structure of some part (maybe all) of your own source code. You work within a framework, i.e. you follow its rules, enjoy its benefits, and suffer its limitations (although a good framework offers extension points to minimise these). Contrast this with a library, which is a collection of code units (e.g. functions, classes, etc.) from which you draw as necessary, but without constraining the structure of your own code. Using a framework is a bigger architectural decision than using a library. A typical enterprise project will use one or more frameworks and several libraries.

花落人断肠 2024-10-12 02:42:19

IDE 代表集成开发环境,是一种允许您使用某种语言进行编程的工具,通常包括集成编译器、调试器、语法突出显示和各种其他工具,可让您更快地开发应用程序。例如 Eclipse IDE、Visual Studio、Netbeans IDE。

框架是一个库或一组类,可以更轻松地实现某种类型的应用程序,并且通常与您的应用程序一起部署。它通常提供您需要遵守的结构和各种帮助程序类。例如 Spring Framework、.Net MVC、Struts 等。

IDE Stands for Integrated Development Environment and is a tool that allows you to program in a certain language and usually includes an integrated compiler, debugger, syntax highlighting and various other tools that allow you to develop applications quicker. E.g. Eclipse IDE, Visual Studio, Netbeans IDE.

A framework is a library or set of classes that makes it easier to implement a certain type of application and is usually deployed with your application. It usually provides a structure that you need to adhere to and various helper classes. E.g. Spring Framework, .Net MVC, Struts etc.

温柔嚣张 2024-10-12 02:42:19

IDE 是开发环境,是您通常编写代码的编辑器。它还可能包括编译器、调试器……框架是一组可重用的库或类,您可以在代码中使用它们。

IDE is the development environment, the editor where you would normally write code. It also might include a compiler, debugger, ... A framework is a set of reusable libraries or classes which you could use in your code.

我做我的改变 2024-10-12 02:42:19

某些 IDE(eclipse、netbeans)提供了一个框架(eclipse RCP、netbeans RCP),允许基于 IDE 的(部分)代码和功能来开发(Java)应用程序。

Some IDE's (eclipse, netbeans) offer a framework (eclipse RCP, netbeans RCP) that allows for developing (Java) applications based on (parts of) the IDE's code and functionality.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文