|
|
|
|
|
by billconan
2502 days ago
|
|
I want to understand the big picture. So how many modules, the life cycles of them, the data flow between them. I checked out your site: https://sourcespy.com/keyu-0003nt Is this the same as UML? To be honest, I think UML doesn't help much understanding code. In my opinion, code should be understood by looking at its runtime structure, not the static structure. For example, you have a main thread that spawns worker threads and they work together. This structure only forms during runtime. in the code, there is only one worker thread class and one main thread class. Software is different from hardware. Hardware is more self-explanatory - when you have multiple hardware components, you have to physically put them on the board. Software is very flexible. The real architecture is created only when the software starts to run. |
|