如何动态改变超类?
我想在我的应用程序中动态更改超类。示例代码是,
public class sample extends SkinnableContainer
{
//Some Tasks
}
但我想在某些情况下将超类“SkinnableContainer”更改为“HGroup”。
请告诉我实现这个要求的方法。
i want to change the super class dynamically in my application. the sample code is
public class sample extends SkinnableContainer
{
//Some Tasks
}
but i want to change the super class "SkinnableContainer" to "HGroup" on some occasions.
please tell me the way of achieving this requirement.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 ActionScript 中是不可能的。我想你应该看看 设计模式 它可以帮助你解决架构问题(我相信你的要求是由某些架构问题引起)。
It is not possible in ActionScript. I suppose you should take a look at design patterns which can help you to solve architectural problems (I believe your request was caused by some architectural problem).