C# | Java | 可访问性 |
---|---|---|
public | public | 在任何类中可见 |
protected internal | protected | 在当前类,以及子类中或同一个Assembly/Package的其他类中可见 |
protected | Not Applicable | 在当前类,以及子类中可见 |
internal | no modifier | 在当前类,以及同一个Assembly/Package的其他类中可见 |
private | private | 仅在当前类中可见 |
C# | Java | 可访问性 |
---|---|---|
public | public | 在任何类中可见 |
protected internal | protected | 在当前类,以及子类中或同一个Assembly/Package的其他类中可见 |
protected | Not Applicable | 在当前类,以及子类中可见 |
internal | no modifier | 在当前类,以及同一个Assembly/Package的其他类中可见 |
private | private | 仅在当前类中可见 |