Tcl TCL_OK用法示例

时间:2012-08-15 19:57:19

标签: tcl

根据Tcl catch命令的帮助页面,我尝试使用指定的结果变量,如TCL_OKTCL_ERROR。但是,应该如何访问这些变量的语法存在一些问题。有没有人有一个代码示例使用这些变量而不是幻数?

1 个答案:

答案 0 :(得分:3)

根据我的经验,您希望使用数值,而不是名称。在C api中编程时使用名称,但是从Tcl开始,只使用数字。

set code [catch {
    my script
} result]
switch -exact -- $code {
    0 { 
        puts "normal command completion"
    }
    1 { 
        puts "code threw an error (ie: error 'wtf')"
    }
    2 { 
        puts "code used 'return' command normally"
    }
    3 { 
        puts "code used 'break' command"
    }
    4 { 
        puts "code used 'continue' command"
    }
}