incr Tcl (incr,即increase,在英文中表示"+", 这个名字是由 "C++"而来, 简写作 "itcl"),是Tcl编程语言的面向对象编程的扩展包。它被广泛使用Tcl编程人员广泛使用。Itcl有两种使用方式,一是软体包(package),可被Tcl程序动态载入;一是作为单独的语言,有自己的解译器(standalone interpreter)。
此条目没有列出任何参考或来源。 (2009年7月22日) |
编程范型 | 多范式: 面向对象, 函数, 指令, 事件驱动 |
---|---|
设计者 | Michael McLennan |
实作者 | Michael McLennan |
发行时间 | 1993 |
当前版本 |
|
型态系统 | 动态类型, 所有物件都可以被当做字符串来处理 |
网站 | incrtcl |
启发语言 | |
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
Itcl (跟Tcl一样) 内置有C代码整合支持,让C代码整合为Itcl类。
相关参考
外部链接
- Itcl/incr Tcl project page (页面存档备份,存于互联网档案馆)
- Tcl package site
- tclweb project(页面存档备份,存于互联网档案馆) (there is a mailing list maintained at this site)
这是一篇关于电脑程式语言的小作品。您可以通过编辑或修订扩充其内容。 |
Wikiwand in your browser!
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.