タイトル不明。ここで私は説明しています
私はパッケージに言ってもらいますpackage provide test
。持っていclasses
ます。を使用してItcl
います。パッケージは次の構造を持っています
::itcl::class classA {
written something having constructor and methods
}
::itcl::class classB {
inherit ::test::classA
having its own constructor and methods
}
::itcl::class classC {
inherit ::test::classA
having its own constructor and methods
}
::itcl::class classD {
inehrit ::test::classB ::test::classC
having its own constructor and methods
}
私が必要としているときpackage test
、私はエラーを下回っています
class "::test::classD" inherits base class "::test::classA" more than once:
エラーを処理するにはどうすればよいですか