Questions tagged «private»

私有是一种封装在面向对象程序设计中的方法。

6
Java反射获取所有私有字段
我想知道是否有一种方法可以获取java中某个类的所有私有字段及其类型。 例如,假设我有一堂课 class SomeClass { private String aaa; private SomeOtherClass bbb; private double ccc; } 现在,我想获得的所有私有字段(aaa,bbb,ccc类)SomeClass(如果不知道所有领域前期的名称),并检查它们的类型。

6
Python中私有和受保护方法的继承
我知道,Python中没有“真正的”私有/受保护的方法。这种方法并不意味着要隐藏任何东西。我只想了解Python的功能。 class Parent(object): def _protected(self): pass def __private(self): pass class Child(Parent): def foo(self): self._protected() # This works def bar(self): self.__private() # This doesn't work, I get a AttributeError: # 'Child' object has no attribute '_Child__private' 那么,这种行为是否意味着“受保护”的方法将被继承,但“私有”的方法将不会被继承呢? 还是我错过了什么?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.