訪問我想創建一個類下面的例子: class BaseClass
{
protected int a;
}
class DeriveredClass : BaseClass
{
protected int ownA;
public void CopyFrom(BaseClass b)
{
ownA = b.a;
}
}
class Parent implements Cloneable{
int i ;
Parent(){
}
Parent(int i){
this.i = i;
}
public Object clonemyobj() throws CloneNotSupportedException{
return t
我正在開發pycharm中的python程序。在這行我的代碼: rut = Tk()
rut.tk.call('wm', 'iconphoto', rut._w, PhotoImage(file=icon_file))
而且我得到 'rut._w' 警告說: access to a protected member _w of a class 當我按Ctrl + Enter它給了我一個選擇:
我想我將能夠訪問受保護的名單在父類中,從一個子類,但得到的錯誤 無法訪問受保護的成員「Liste.listItems acessing保護名單」通過資格賽,如果類型‘清單當然’,限定的類型必須是‘ListReader’ 任何想法如何克服這一點的同時仍維持保護List<Object> listItems(這樣其他類,但繼承的保護級別人們可以訪問此列表)? public class Liste
{