在派生类构造函数之后调用

在派生类构造函数之后调用

本文介绍了如何在派生类构造函数之后调用基类方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 各位大家好。 让我知道我有以下课程: class ClBase { public ClBase(){/ * do stuff .. * /} protected postConstructorMethod(){/ * do do more stuff .. * /} } class ClInherited:ClBase { public ClInherited():base(){/ * do stuff .. * /} } 有没有办法在派生类构造函数之后调用postConstructorMethod()? 在此先感谢解决方案 Hello everyone.Let's supose i have the following classes:class ClBase{ public ClBase(){/*do stuff..*/} protected postConstructorMethod(){ /*do do more stuff..*/}}class ClInherited:ClBase{ public ClInherited():base(){/*do stuff..*/}}Is there any way to call "postConstructorMethod()" after the derived class constructor?Thanks in advance 解决方案 这篇关于如何在派生类构造函数之后调用基类方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-05 10:46