}
//-----------------------------------Inherited Attributes---------------------------------
public override object Key
{
get
{
return this.key;
}
}
//索引器
public override Tree this[uint _index]
{
get
{
if( _index>=this.degree )
throw new Exception("My:out of index!");//如果出界,则抛出异常
if( this.IsEmpty() )