使用靜態常量(在父類中聲明),我有這樣的事情:如何通過一個子類(繼承類)
class ParentClass
{
public static const ON_SOME_EVT:String = "onSomeEvent" ;
....
}
class ChildClass extends ParentClass
{
....
}
main()
{
trace(ChildClass.ON_SOME_EVT) ; //<< compiler error on doing this
//1119: Access of possibly undefined property ABC through a reference with static type Class.
}
那我應該怎麼實現這一點。我想通過子類訪問常量,但不是父類。
謝謝。
當您從'ParentClass'繼承時,您已經連接到它。那麼爲什麼不直接在子類中使用'ParentClass.ON_SOME_EVENT'呢? –