本文介绍了限制类以仅访问接口中的某些特定方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的所有人,
我从面试官那里得到的问题对我来说很复杂请给我更好的解决方案。
接口I1
{
method1()
method2()
}
A类:I1
{
\\只能访问method1而不是method2
}
B类:I1
{
\\\ \\只能访问method2而不是method1
}
这是可能的吗?
解决方案
Dear All,
I got the question from Interviewer which is complicated for me pls give me the better solution.
Interface I1 { method1() method2() } Class A : I1 { \\ can Access only method1 not method2 } Class B : I1 { \\ can Access only method2 not method1 }
Is That possible???
解决方案
这篇关于限制类以仅访问接口中的某些特定方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!