Software Engineering: 1. Introduction
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:
- a number of separate programs and configuration files
- system documentation: describes the structure of the system
- user documentation: explains how to use the system
- websites: for users to download recent product information
What are the fundamental software engineering activities?
- software specification: customers and engineers define the software that is to be produced and the constraints on its operation
- software development: the software is designed and programmed
- software validation: the software is checked to ensure that it is what the customer requires
- 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:
- stand-alone applications: These are application systems that run on a local computer, such as a PC.
- 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.
- embedded control systems: These are software contorl systems that control and manage hardware devices.
- batch processing systems: These are business systems that are designed to process data in large batches.
- entertainment systems: These are systems that are primarily for personal use and which are intended to entertain the user.
- 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.
- 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.
- 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的更多相关文章
- Software Engineering: 3. Project planning
recourse: "Software Engineering", Ian Sommerville Keywords for this chapter: planning sche ...
- SENG201 (Software Engineering I) Project
SENG201 (Software Engineering I) ProjectSpace ExplorerFor project admin queries:For project help, hi ...
- 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 ...
- 第二篇——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 ...
- Software Engineering: 2. Project management
resources:"Software Engineering" Ian Sommerville For most projects, important goals are: D ...
- 个人阅读作业2—《No Silver Bullet: Essence and Accidents of Software Engineering》读后感
在进行了一次结对编程.一次团队编程和一次个人编程项目后,读了<No Silver Bullet: Essence and Accidents of Software Engineering> ...
- Software Engineering at Google
Google的Fergus Henderson在Software Engineering at Google中介绍了Google的软件工程实践. 软件开发 源码仓库 单一源代码仓库,除了核心配置和安全 ...
- 【Software Test】Introduction to Software Testing
Introduction to Software Testing 文章目录 Going to Learn --. Evolution of The Software Industry Errors, ...
- 10. Software, Software Engineering, water fall (瀑布模型),Code Complete等名词的来源
①.Software-软件”一词是20世纪60年代才出现的,软件Software——1958年由贝尔实验室的著名统计学家John Tukey 提出软件与硬件一起构成完整的计算机系统,它们是相互依存,缺 ...
随机推荐
- SQL2008关于quotename的用法
),) set @tbname='index' ---查这个表里的数据: print(@tbname) set @sql = 'select * from '+QUOTENAME(@tbname) p ...
- LeetCode Generalized Abbreviation
原题链接在这里:https://leetcode.com/problems/generalized-abbreviation/ 题目: Write a function to generate the ...
- mongodb配置
Mongodb1. 安装2. CRUD3. 索引4. 副本及(replica sets)5. 分片(sharding) nosql 简单数据模型 元数据和应用数据分离 弱一致性 优势: 避免不必要的复 ...
- jdk环境变量
exportJAVA_HOME=/opt/jdk1.8.0_92 exportJRE_HOME=${JAVA_HOME}/jre exportCLASSPATH=.:${JAVA_HOME}/li ...
- kafka 命令行操作
1.创建主题(topic) bin/kafka-topics.sh --create --zookeeper m6:2181 --replication-factor 1 --partitions 1 ...
- 【转】MySQL数据库MyISAM和InnoDB存储引擎的比较
MySQL有多种存储引擎,MyISAM和InnoDB是其中常用的两种.这里介绍关于这两种引擎的一些基本概念(非深入介绍). MyISAM是MySQL的默认存储引擎,基于传统的ISAM类型,支持全文搜索 ...
- C++ DateTime 结构
OS:Win7 ,Tools:VS2015 DateTime.h #pragma once struct DateTime { public: unsigned Year; // years sinc ...
- 【001:转载 ubuntu下: 建立本地SVN服务器】
1.安装 svn 工具 $sudo apt-get install subversion 2. 创建工程文件夹,用于存放工程 $mkdir ~/localsvn $mkdir ~/localsvn/ ...
- 通过FTP命令上传下载
用命令如何把自己电脑上的文件上传到被入侵的电脑上呢.方法有很多.用ftp是个不错的选择.方法如下 echo open 你的ftpip >ftp.txt echo user >>f ...
- 【群论】polya定理
对Polya定理的个人认识 我们先来看一道经典题目: He's Circles(SGU 294) 有一个长度为N的环,上面写着“X”和“E”,问本质不同的环有多少个(不 ...