下面的 TCL 函数被调用 n 次。每次将 numid 和 type 传递给此函数时,我都会尝试为每种类型添加 numid。
例如
如果传递的值如下
2 BLACK
1 RED
1 BLACK
3 BLUE
1 BLUE
2 BLUE
2 RED
我得到的输出是使用 set_numid_type 函数
black_color_str 2 1
red_color_str 1 2
blue_color_str 3 1 2
但我需要的输出如下。当类型不按顺序时,它应该附加到不同的变量类型。
black_color_str 2
red_color_str 1
black_color_str 1
blue_color_str 3 1 2 (since BLUE color is called in sequence)
red_color_str 2
proc set_numid_type {numid type} {
variable black_color_str
variable red_color_str
variable blue_color_str
if {$type == "BLACK"} {
if {![info exists black_color_str] || ![llength $ black_color_str]} {
set black_color_str ""
}
lappend black_color_str $numid
}
if {$type == "RED"} {
if {![info exists red_color_str] || ![llength $ red_color_str]} {
set red_color_str ""
}
lappend red_color_str $numid
}
if {$type == "BLUE"} {
if {![info exists blue_color_str] || ![llength $ blue_color_str]} {
set blue_color_str ""
}
lappend blue_color_str $numid
}
}