0
有沒有辦法在incr Tcl之間取得班級之間的友誼?有沒有辦法讓[增強Tcl]類的朋友?
考慮下面的代碼。
package require Itcl
::itcl::class A {
private {
proc f { } {
puts "==== A::f"
}
}
}
::itcl::class B {
public {
proc g { } {
puts "==== want to be able to call A::f"
}
}
}
我想A::f
是看不見外面的B
A
鑽功能。我怎樣才能做到這一點?