Resource: Ian, Sommerville, Software Engineering


1. Professional software development

1.1 Software engineering

Software engineering is intended to support professional software development rather than individual programming.

It may include:

  1. a number of separate programs and configuration files
  2. system documentation: describes the structure of the system
  3. user documentation: explains how to use the system
  4. websites: for users to download recent product information

What are the fundamental software engineering activities?

  1. software specification: customers and engineers define the software that is to be produced and the constraints on its operation
  2. software development: the software is designed and programmed
  3. software validation: the software is checked to ensure that it is what the customer requires
  4. software evolution: the software is modified to reflect changing customer and market requirements

There are two kinds of software products:

generic products: These are stand-alone systems that are produced by a development organization and sold on the open market to any customer who is able to buy them.

Example: databases, word processors, drawing packages

It also includes so-called vertical applications designed for some specific purpose such as library information systems, accounting systems, or systems for maintaining dental records.

customized (or bespoke) products: These are systems that are commissioned by a particular customer. A software contractor developers the software especially for that customer.

Example: control systems for electronic devices, systems written to support a particular business process, and air traffic control systems.

1.2 Software engineering diversity

Software engineering is a systematic approach to the production of software that takes into account:

  • practical cost
  • schedule
  • dependability isssues
  • the needs of software custmoers and producers.

There are many different types of application including:

  1. stand-alone applications: These are application systems that run on a local computer, such as a PC.
  2. interactive transaction-based applications:  These are applications that execute on a remote computer and that are accessed by users from their own PCs or terminals.
  3. embedded control systems: These are software contorl systems that control and manage hardware devices.
  4. batch processing systems: These are business systems that are designed to process data in large batches.
  5. entertainment systems: These are systems that are primarily for personal use and which are intended to entertain the user.
  6. systems for modeling and simulation: These are systems that are developed by scientists and engineers to model physical processes or situations, which include many, separate, interacting objects.
  7. data collection systems: These are systems that collect data from their environment using a set of sensors and send that data to other systems for processing.
  8. systems of systems: These are systems that are composed of a number of other software systems.

1.3 Software engineering and the Web

The development of web browsers that could run small programs and do some local processing led to an evolution in business and organizational software.

The next stage in the development of web-based systems aws the notion of web services.

2. Software engineering ethics

3. Case studies

Software Engineering: 1. Introduction的更多相关文章

  1. Software Engineering: 3. Project planning

    recourse: "Software Engineering", Ian Sommerville Keywords for this chapter: planning sche ...

  2. SENG201 (Software Engineering I) Project

    SENG201 (Software Engineering I) ProjectSpace ExplorerFor project admin queries:For project help, hi ...

  3.  Go is more about software engineering than programming language research.

    https://talks.golang.org/2012/splash.article Go at Google: Language Design in the Service of Softwar ...

  4. 第二篇——The communication during software engineering.

    I've learned a lot in my software engineering class about how a program comes out.That's also a esse ...

  5. Software Engineering: 2. Project management

    resources:"Software Engineering" Ian Sommerville For most projects, important goals are: D ...

  6. 个人阅读作业2—《No Silver Bullet: Essence and Accidents of Software Engineering》读后感

    在进行了一次结对编程.一次团队编程和一次个人编程项目后,读了<No Silver Bullet: Essence and Accidents of Software Engineering> ...

  7. Software Engineering at Google

    Google的Fergus Henderson在Software Engineering at Google中介绍了Google的软件工程实践. 软件开发 源码仓库 单一源代码仓库,除了核心配置和安全 ...

  8. 【Software Test】Introduction to Software Testing

    Introduction to Software Testing 文章目录 Going to Learn --. Evolution of The Software Industry Errors, ...

  9. 10. Software, Software Engineering, water fall (瀑布模型),Code Complete等名词的来源

    ①.Software-软件”一词是20世纪60年代才出现的,软件Software——1958年由贝尔实验室的著名统计学家John Tukey 提出软件与硬件一起构成完整的计算机系统,它们是相互依存,缺 ...

随机推荐

  1. iOS 横竖屏切换(应对特殊需求)

    iOS 中横竖屏切换的功能,在开发iOS app中总能遇到.以前看过几次,感觉简单,但是没有敲过代码实现,最近又碰到了,demo尝试了几种情况,这里就做下总结.注意 横屏两种情况是反的你知道吗? UI ...

  2. python 特殊的下划线

    Python 用下划线作为变量前缀和后缀指定特殊变量. _xxx      不能用'from module import *'导入 __xxx__ 系统定义名字 __xxx    类中的私有变量名 核 ...

  3. 画廊插件baguetteBox

    HTML <link rel="stylesheet" href="css/baguetteBox.css"> <div class='bag ...

  4. HTML5实现下载文件且指定下载文件名

    <a href="/files/adlafjlxjewfasd89asd8f.pdf" download="预算表.pdf">下载</a> ...

  5. 微信公众平台开发(26) ACCESS TOKEN

    本文介绍微信公众平台下Access Token的概念及获取方法. 一.Access Token access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token.正常 ...

  6. paper 100:何恺明经典去雾算法

    一:由简至美的最佳论文(作者:何恺明  视觉计算组) [视觉机器人:个人感觉学习他的经典算法固然很重要,但是他的解决问题的思路也是非常值得我们学习的] 那是2009年4月24日的早上,我收到了一封不同 ...

  7. RuntimeWarning: invalid value encountered in divide

    import numpy as np olderr = np.seterr(all='ignore') 在程序的开头加上如上代码 https://docs.scipy.org/doc/numpy/re ...

  8. Android系统下,用adb实现自动获取应用性能数据

    [自动化测试模式] 支持以adb shell命令的形式启动和运行.需要注意的是,office系列软件可能会更改命令中的字符,导致命令不可用!请手工输入命令,或从附带的command.txt文本中复制. ...

  9. 一个Json结构对比的Python小工具兼谈编程求解问题

    先上代码. jsondiff.py #!/usr/bin/python #_*_encoding:utf-8_*_ import argparse import json import sys rel ...

  10. TBB 学习笔记

    #include <tbb/task_scheduler_init.h> #include <tbb/blocked_range.h> #include <tbb/par ...