本文介绍了使用条件更改访问修饰符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



是否可以在编译时指定访问修饰符?

例如:

Hi,

Is this possible to specify access modifier at compile time?

Ex:

if(accessModifier.public)
    change method void A() into Public void A()
else if(accessModifier.protected)
    change method void A() into Protected void A()



我需要根据从用户那里获得的条件来启用或禁用某些方法对外部世界的访问权限.

我该怎么办?

在此先感谢

最好的问候,
SRJ



I need to enable or disable the certain methods access permission to the outer world based on the condition get it from users.

how can i do this?

Thanks in advance

Best Regards,
SRJ

推荐答案


#if PUBLIC
    public void A()
#else
    protected void A()
#endif
    {
        //here comes the body of A()
    }


这篇关于使用条件更改访问修饰符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-26 11:52