系统分析中的系统范围
也许有人知道,系统分析中的“系统范围”(或类似的东西)是什么意思?
Maybe someone knows, what does it mean "scopes of the system" (or something like that) in system analysis?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我不希望听到任何人谈论系统的“范围”。 系统的“范围”是它要包含的功能集。
I wouldn't expect to ever hear anyone speak of the "scopes" of a system. The "scope" of a system is the set of functionality it's meant to encompass.
范围(单数)是系统将提供给用户的功能。 它定义了系统将做什么和系统不会做什么。
The scope (in singular) is the functionality the system will provide to the users. It defines what the system will do and what the system won't do.
系统的范围是它包含的功能。 另一方面,不相关的事物超出了系统的范围。
The Scope of a system is the functionality which it encompasses. On the other hand, things which are not relevant are outside the scope of the system.
系统的范围包括您打算构建的模块。 超出范围的东西通常是您不会开发的子系统。
示例:如果我正在构建一个显示餐馆信息的网站。 餐厅数据在范围内,显示餐厅位置的地图在范围外!
我建议使用谷歌或必应地图(API),而不是自己开发这个模块。
The scope of a system includes the modules you are intending to build. stuff that is outside of the scope will usually be a sub system you will not be developing .
Example : if I am building a website that shows information on restaurants. The data on restaurant is in the scope, the map showing the restaurant location is outside of the scope!
i would suggest using google or bing maps (API) and not developing this module yourself.