Intermediate software designer preparation--answer questions--data flow diagram

basic concept

  • Data flow diagram is also called data flow diagram (DFD). It gets rid of the physical content of the system and accurately describes the function, input, output and data storage of the system logically. It is an important part of the logical model of the system.

fundamental element

  • Data flow: Each data flow uses a well-defined name to reflect the meaning of the data flow [except that it does not need to be named when it flows to or from the data storage]; it is used to indicate the flow direction of the data .

  • Processing: Each processing has a name and number; it describes the transformation between the input data stream and the output data stream ; each processing has at least one input data stream and one output data stream.

  • Data storage: Each data storage has a well-defined name identification; used to store data .

  • External entity: It is used to point out the origin of the data required by the system and the destination of the data generated by the system .
    insert image description here

Layering of Data Flow Diagrams

  • This approach to structured

Guess you like

Origin blog.csdn.net/weixin_45880844/article/details/130539055