Incr Tcl
incr Tcl (incr,即increase,在英文中表示"+", 這個名字是由 "C++"而來, 簡寫作 "itcl"),是Tcl編程語言的面向對象編程的擴展包。它被廣泛使用Tcl編程人員廣泛使用。Itcl有兩種使用方式,一是軟體包(package),可被Tcl程序動態載入;一是作為單獨的語言,有自己的解譯器(standalone interpreter)。
多範式: 面向對象, 函數, 指令, 事件驅動 | |
設計者 | Michael McLennan |
實作者 | Michael McLennan |
1993 | |
当前版本 |
|
型態系統 | 動態類型, 所有物件都可以被當做字符串來處理 |
網站 | |
啟發語言 | |
Tcl, C++ |
概述
命名空間的支持
Itcl 允許使用命名空間(namespace)來組織的命令和變量。
例:
package require Itcl
itcl::class Toaster {
variable crumbs 0
method toast {nslices} {
if {$crumbs > 50} {
error "== FIRE! FIRE! =="
}
set crumbs [expr $crumbs+4*$nslices]
}
method clean {} {
set crumbs 0
}
}
itcl::class SmartToaster {
inherit Toaster
method toast {nslices} {
if {$crumbs > 40} {
clean
}
return [chain $nslices]
}
}
set toaster [SmartToaster #auto]
$toaster toast 2
C代碼的整合
Itcl (跟Tcl一樣) 內置有C代碼整合支持,讓C代碼整合為Itcl類。
外部連結
- Itcl/incr Tcl project page (页面存档备份,存于)
- Tcl package site
- tclweb project(页面存档备份,存于) (there is a mailing list maintained at this site)
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.