0

我编写了以下代码,应该在我的 args 输入列表上进行迭代,每次迭代都读取两个参数。问题是它不像我写的那样工作。我查看了 Tcl/Tk Wikipedia 网页,但找不到任何有用的建议。我可以按照我写的方式(不将其转换为数组)吗?

itcl::body class::config {args} {
if {[llength $args] > 1} {
    foreach {option value} in $args {
        if {[string length $option] == 0 || [string length $value] == 0} {
            puts "Runtime error::Bad Input: option flag or value is missing"
            return
        }
        switch --$option {
            -a { 
                if { [string is integer $value -strict] } {
                    #do something
                }
            }
            -b { 
                    if { [string is integer $value -strict] } {
                    #do something
                }
            }
        }
return }
4

2 回答 2

4

删除in,您只需要:

foreach {option value} $args {

请参阅https://www.tcl.tk/man/tcl/TclCmd/foreach.htm上的文档

于 2018-08-02T12:57:43.200 回答
0

一些提示。代替:

[string length $option] == 0

你也可以写:

$option == ""

在这种情况下,-strict 选项是多余的,因为您已经跳过了空字符串。此外,您应该将选项放在“是整数”之后:

string is integer -strict $value
于 2018-09-20T07:26:44.767 回答