UG后处理tcl文件中hiset的含义
#_______________________________________________________________________________# utility to return TRUE(1) if the variable v1 is set, else FALSE(0)
# example set xx returns xx as TRUE(1) or FALSE(0)
# example if {} {puts $list_file "yy"}
#_______________________________________________________________________________
proc hiset { v1 } {
upvar $v1 v2
if { } { return 1 } else { return 0 }
}
给自己顶一个{:lol:}
页:
[1]