如何在构造函数外部访问Java中的继承属性?

public PainelPrincipal(Jogo jogo,GridPanel gridPanelPrincipal) {
    super(jogo,gridPanelPrincipal);
    listaBlocos = new LinkedList<>();

    carregarFicheiroNivel();
    gridPanelPrincipal.setEventHandler(this);
}

private void carregarFicheiroNivel() {
    FileHandler handler = new FileHandler("/niveis/EstadoInicial.txt");
    String conteudo = handler.readFile();
    String[] colunas = null;

    int y=0;
    for(String linha: conteudo.split("\n")){
        colunas = linha.split(" ");
        for(int x = 0; x < colunas.length; x++) {
            if(colunas[x].substring(1, 2).equals(PAREDE)){
                grelha[x][y] = new Parede();
                gridPanelPrincipal.put(0, 0, grelha[0][0].getCellRepresentation());
            }else{
                switch(colunas[x].substring(0, 1)){
                    case "0":break;
                }
            }
        }
        y++;
    }
}


此行gridPanelPrincipal.put(0,0,grelha [0] [0] .getCellRepresentation());似乎不起作用,他在类的构造函数之外无法识别gridPanelPrincipal变量。

是否可以在构造函数之外访问它?我该怎么做?

最佳答案

您不能在构造函数之外访问它,因为大概是private。您只能在构造函数中访问它,因为它是构造函数的参数。

您可以:


在超类中创建适当的变量protected以使其对子类可见,或者
(种类繁多)在子类中创建您自己的变量以存储其对GridPanel的引用,因此您可以使用其他方法进行访问。

09-26 06:42