1. 基础知识1.1. Union联合体union{
linkNode link;
NetNode net;
}LinkOrNet
结构体中有两个变量,但是只能有一个变量占据内存
c++17 中替代方案variant
#i
2025-08-28