释义 |
structured programming 结构化程序设计技术;[结构化规则] A technique for organizing and coding programs that reduces complexity, improves clarity, and makes them easier to debug and modify. Typically, a structured program is a hierarchy of modules that each have a single entry point and a single exit point; control is passed downward through the structure without unconditional branches to higher levels of the structure. 一种组织和编写程序的技术,可减少程序的复杂性,提高清晰度,并使程序容易调试和修改。通常, 一个结构化程序是由若干模块组成的一种分层结构。这些模块的每一个只有单一的入口点和单一的出口点。控制权自上而下通过该结构,没有转向较高层的无条件转移。 |