- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于其他语言,列表元素自增是非常容易的,就像:
list1(i) = list1(i) + 1
但对于 tcl,目前我使用:
set temp [lindex $list1 $i];
lset list1 $i [expr $temp + 1];
还有其他方法可以改进/使其更简单吗?
最佳答案
对于 Tcl list,我不确定是否有任何内部命令可以直接增加列表元素的值。
但是,如果您在 Tcl 中通过 dict incr
命令使用字典,则可以做到这一点。
dict incr dictionaryVariable key ?increment?
This adds the given increment value (an integer that defaults to 1 if not specified) to the value that the given key maps to in the dictionary value contained in the given variable, writing the resulting dictionary value back to that variable. Non-existent keys are treated as if they map to 0. It is an error to increment a value for an existing key if that value is not an integer. The updated dictionary value is returned.
set sample { firstName Dinesh lastName S title Mr age 23}
# This will increase the value of 'age' by 1
puts [ dict incr sample age 2]
# If any key used which does not exits in the dict, then it will create that key
# assume it's initial value is 0.
puts [ dict incr sample dob ]
输出:
firstName Dinesh lastName S title Mr age 25
firstName Dinesh lastName S title Mr age 25 dob 1
如果您仍然对在列表元素中使用增量感兴趣,那么我们可以编写一个新命令,如下所示,
proc lincr { my_list index { increment 1 } } {
upvar $my_list user_list
if { [llength $user_list] <= $index } {
return -code error "Wrong list index"
}
lset user_list $index [ expr {[lindex $user_list $index] + $increment} ]
}
set val { 1 2 3 4 }
lincr val 1 4; # Increasing first index by 4
lincr val 0; #Increasing zeroth index by 1
puts $val
关于列表元素自增,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26399525/
1、修改数据 复制代码代码如下: DataRow dr =
数据库操纵基本流程为: 1、连接数据库服务器 2、选择数据库 3、执行SQL语句 4、处理结果集 5、打印操作信息 其中用到的相关函数有 •resource m
CRUD是Create(创建)、Read(读取)、Update(更新)和Delete(删除)的缩写,它是普通应用程序的缩影。如果您掌握了某框架的CRUD编写,那么意味可以使用该框架创建普通应用程序了
项目结构: 添加页面: &
本文实例讲述了android操作sqlite数据库(增、删、改、查、分页等)及listview显示数据的方法。分享给大家供大家参考,具体如下: 由于刚接触android开发,故此想把学到的基础知识
我是一名优秀的程序员,十分优秀!