Skip to content

软件开发:流程与术语

一、软件生命周期(SDLC)

英文中文说明发音
Requirement需求user requirement(用户需求)、functional requirement(功能需求)
Analysis需求分析requirement analysis、business analysis
Design设计system design、architecture design、UI design
Development开发 / 编码development phase、code implementation
Testing测试unit testing、integration testing、UAT
Deployment部署 / 发布deploy to production、deployment pipeline
Maintenance维护bug fix、feature enhancement、system maintenance

二、开发流程相关

英文中文说明发音
Agile敏捷Agile development、Sprint(冲刺)、Scrum
Sprint冲刺(敏捷迭代)2 周一个 Sprint,Sprint planning(冲刺规划)/sprɪnt/
Backlog待办清单product backlog(产品待办)、sprint backlog(冲刺待办)/ˈbæklɒɡ/
User Story用户故事"As a user, I want to..."格式的需求描述
Epic史诗(大需求)由多个 user story 组成的大功能/ˈepɪk/
Kanban看板看板式管理,WIP(Work In Progress)限制/ˈkænbən/
Stand-up站会daily stand-up(每日站会)/stænd ʌp/
Retrospective回顾会Sprint retrospective(冲刺回顾)/ˌretrəˈspektɪv/
Roadmap产品路线图产品中长期规划,release roadmap
Milestone里程碑项目阶段性目标/ˈmaɪlstoʊn/
Deliverable交付物可交付的成果物(文档/代码/原型)/dɪˈlɪvərəbl/
Stakeholder干系人项目相关人员(用户/老板/客户)/ˈsteɪkhoʊldər/

三、需求与文档

英文中文说明发音
PRD产品需求文档Product Requirements Document/piː ɑːr diː/
BRD业务需求文档Business Requirements Document/biː ɑːr diː/
SRS软件需求规格Software Requirements Specification/es ɑːr es/
Specification规格 / 规范functional spec、technical spec
Prototype原型UI 原型(Axure/Figma),high-fidelity prototype
Wireframe线框图低保真度原型,只画布局/ˈwaɪərfreɪm/
Mockup设计稿高保真 UI 设计稿
Acceptance Criteria验收标准"Given-When-Then" 格式,DoD(Definition of Done)
Change Request变更请求需求变更时走 CR 流程
Scope Creep范围蔓延需求不断增加、项目边界失控/skoʊp kriːp/

四、测试相关

英文中文说明发音
Unit Test单元测试测单个函数/方法,framework:Jest/pytest/JUnit
Integration Test集成测试测多个模块一起工作
E2E Test端到端测试Cypress/Playwright/Selenium,模拟用户完整流程
Regression Test回归测试改了代码后跑一遍全量测试确保没破坏旧功能
Smoke Test冒烟测试快速验证核心功能是否正常
UAT用户验收测试User Acceptance Testing,由客户/用户验收/juː eɪ tiː/
Bug / DefectBug / 缺陷bug report、bug fix、bug severity(critical/minor)
Test Case测试用例test case、test scenario
Test Plan测试计划包含范围/策略/资源/进度
Code Coverage代码覆盖率line coverage、branch coverage,目标 80%+
QA质量保证Quality Assurance,QA engineer、QA process
Performance Test性能测试load test(负载)、stress test(压力)、soak test(浸泡)
Benchmark基准测试A/B 方案性能对比

五、CI/CD 与部署

英文中文说明发音
CI持续集成Continuous Integration,push 后自动 build + test/siː aɪ/
CD持续交付 / 部署Delivery(可随时发布)/ Deployment(自动发布)/siː diː/
Pipeline流水线CI/CD pipeline,build → test → deploy
Build Agent / Runner构建执行器GitHub Actions runner、Jenkins agent
Artifact构建产物build artifact(jar/war/zip)/ˈɑːrtɪfækt/
Docker ImageDocker 镜像image tag、image build、docker registry
Container容器docker container、container orchestration
Kubernetes / K8s容器编排pod、service、deployment、helm chart
Rollout滚动发布rolling update、blue-green deployment/ˈroʊlaʊt/
Canary金丝雀发布先让小部分用户用新版本,观察没问题再全量/kəˈneri/
Feature Flag特性开关灰度开关,控制新功能只对部分用户可见/ˈfiːtʃər flæɡ/
Environment环境dev(开发)/ test(测试)/ staging(预发布)/ prod(生产)
Production生产环境live site、production deploy
Rollback回滚发布出问题时回退到上一个版本
Hotfix热修复紧急修复生产 bug 的小版本
Downtime宕机时间planned downtime(计划内)/ unplanned(事故)
Blameless无指责blameless postmortem(事后复盘,关注过程而非追责)/ˈbleɪmləs/

六、协作与沟通

英文中文说明发音
Ticket工单Jira ticket、bug ticket、feature ticket
Issue问题 / 需求GitHub issue、bug issue
Task任务task assignment、task board
Assignee指派人任务负责人/ˌæsəˈniː/
Reporter报告人提 bug 的人
Priority优先级P0(紧急)/ P1 / P2 / P3
Label标签bug、enhancement、documentation
Comment评论 / 备注inline comment(行内评论)、review comment
Review评审code review、design review、peer review
Approve批准PR approve、pull request review
Blocked阻塞任务被阻塞,等别人
Escalate升级 / 上报问题升级到更高级别处理/ˈeskəleɪt/
Sync / Sync up同步信息let's sync、sync meeting(同步会)
Alignment对齐大家理解一致,"我们对齐一下"
Action Item待办事项会议结束后的待办,action items
Follow Up跟进I'll follow up on this tomorrow
KPI关键指标Key Performance Indicator/keɪ piː aɪ/
OKR目标与关键结果Objective + Key Results,季度目标/oʊ keɪ ɑːr/

七、常见缩写速查

缩写全称中文发音
SDLCSoftware Development Life Cycle软件开发生命周期/es diː el siː/
CI/CDContinuous Integration / Continuous Delivery持续集成/交付
PRPull Request合并请求
MRMerge Request合并请求(GitLab 用)
MRMerge Request合并请求
CRChange Request / Code Review变更请求/代码评审
WIPWork In Progress进行中
PoCProof of Concept概念验证
POCProof of Concept概念验证
MVPMinimum Viable Product最小可行产品
MVSMinimum Viable System最小可行系统
DoDDefinition of Done完成标准
DoRDefinition of Ready就绪标准
SLAService Level Agreement服务等级协议/es el eɪ/
SLOService Level Objective服务等级目标/es el oʊ/
DORADevOps Research and AssessmentDevOps 四大指标/ˈdoʊrə/
MTTRMean Time to Repair平均修复时间/em tiː tiː ɑːr/
MTTDMean Time to Detect平均检测时间/em tiː tiː diː/
RCARoot Cause Analysis根因分析/ɑːr siː eɪ/
KPIKey Performance Indicator关键绩效指标
OKRObjectives and Key Results目标与关键结果

⬅ 返回英语-软件开发目录

© 2026 生活百科