我有一個類:穿越家長和設置屬性有條件
class Unit
{
string Name;
Unit Parent;
bool IsInCharge;
Unit ParentUnitThatIsInCharge;
}
我要遍歷父母尋父是負責並將其設置爲ParentUnitThatIsInCharge。
我有得到ParentUnitThatIsInCharge功能:
public Unit GetParentUnitThatIsInCharge(Unit unit)
{
Unit inChargeUnit= null;
if (unit.Parent != null)
{
do
{
inChargeUnit= unit.Parent;
} while (!inChargeUnit.IsInCharge);
}
return inChargeUnit;
}
我想將類屬性設置爲函數的結果。當對象被設置時,我會如何去做這件事?
「class property」是什麼意思?屬性屬於類的每個實例(它們是非靜態的)。 – ryanyuyu
你的問題(和代碼..)有點不清楚......你能提供一個數據樣本嗎? (輸入+請求輸出) – Amit