1

是否可以在类的成员方法中引用当前对象。请考虑以下代码:

itcl::class widget {
   private variable inst

   method ChildCount {} {
       return [llength [keylkeys inst children]]
   }
   method AddChild {childWidget} {
       inst children.[ChildCount] $childWidget
       # ***HOW TO GET THIS WORKING?***
       $childWidget SetParent $self
   }
}

$selfin的等价物是$childWidget SetParent $self什么?

4

1 回答 1

2

好的,在更多的在线搜索之后很明显 ->$this变量应该可以解决问题。

于 2016-06-28T10:58:55.280 回答