T
TearAngel
Unregistered / Unconfirmed
GUEST, unregistred user!
有一个父类,两个子类
TFather,TChi_1,TChi_2
当我用
var pF:tfather;
pC_1:tchi_1;
pC_2:tchi_2;
创建三个对象,用TFather(pc_1)更改了对象pc_1后,
如何根据pc_1.classname='TChi_1'来做TChi_1(pc_1),
也就是如果TFather有很多子类,你不可能老是在那里用if pc_1.classname='TChi_1' then TChi_1(pc_1)
TFather,TChi_1,TChi_2
当我用
var pF:tfather;
pC_1:tchi_1;
pC_2:tchi_2;
创建三个对象,用TFather(pc_1)更改了对象pc_1后,
如何根据pc_1.classname='TChi_1'来做TChi_1(pc_1),
也就是如果TFather有很多子类,你不可能老是在那里用if pc_1.classname='TChi_1' then TChi_1(pc_1)