TCL脚本语言:过程调用中用命令行传递参数如何实现
比如有这样一个子程序proctotal{args}{settotal0foreachi$args{incrtotal$i}return$total}如何来写调用语句来完成...
比如有这样一个子程序
proc total {args}{
set total 0
foreach i $args{
incr total $i
}
return $total
}
如何来写调用语句来完成从命令行传递参数 展开
proc total {args}{
set total 0
foreach i $args{
incr total $i
}
return $total
}
如何来写调用语句来完成从命令行传递参数 展开
3个回答
展开全部
用“args“关键字表示支持可变参数。
total [list 1 2 3]
total [list 1 2 3]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
All Tcl scripts have access to three predefined variables.
$argc - number items of arguments passed to a script.
$argv - list of the arguments.
$argv0 - name of the script.
$argc - number items of arguments passed to a script.
$argv - list of the arguments.
$argv0 - name of the script.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询