Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 566 Bytes

5 Writing a Program.md

File metadata and controls

14 lines (12 loc) · 566 Bytes
title toc date
5 Writing a Program
false
2017-10-30
  • prep code: a form of pseudocode, to help you focus on the logic without stressing about syntax. 一种伪代码
  • test code: a class or methods that will test the real code and validate that it's doing the right thing. 测试代码
  • real code: the actual implementation of the class. 真实代码

Extreme Programming极限编程):

  • Write the test code first
  • Make small, but frequent, releases
  • Develop in iteration cycles.