hull inherit

class aa {
 inherit itk::Widget
 constructor { args }  {
  puts $itk_component(hull)
 }
 
}

class bb {
 inherit aa
 constructor { args } {
  puts $itk_component(hull)
 }
}

class cc {
 inherit bb
 constructor { args } {
  puts $itk_component(hull)
 }
}

cc .c

posted @ 2011-08-06 20:33  greencolor  阅读(119)  评论(0编辑  收藏  举报