Я получаю сообщение об ошибке «я не могу найти символ» при использовании класса из другого файла - PullRequest
0 голосов
/ 28 апреля 2020

Я пытаюсь создать Quadtree в отдельном файле из моего файла Quadtree.

Quadtree<String> blocky = new Quadtree<String>(rand.nextInt(5), new Quadtree.Boundry(0,0,rand.nextInt(750),rand.nextInt(750)));

Тем не менее, я получаю эту ошибку в терминале.

error: an enclosing instance that contains Quadtree.Boundry is required

Когда я делаю это без "Quadtree". до Boun dry я получаю

error: cannot find symbol

Любые предложения о том, что я могу сделать?

edit:

Вот часть моего класса Quadtree

import java.util.ArrayList;

publi c класс Quadtree {

class Node{
    int x, y;
    E elem;
    Node(int x, int y, E elem)
    {
        this.x = x;
        this.y = y;
        this.elem = elem;
    }

}

final int QT_NODE_CAPACITY = 64;
int level = 0;
ArrayList<Node> nodes;
public Quadtree NW = null;
public Quadtree NE = null;
public Quadtree SE = null;
public Quadtree SW = null;
Boundry bdry;

public Quadtree(int level, Boundry bdry)
{
    this.level = level;
    this.bdry = bdry;
    nodes = new ArrayList<Node>();
}

class Boundry
{

    public int getXMin(){
        return xMin;
    }
    public int getXMax(){
        return xMax;
    }
    public int getYMin(){
        return yMin;
    }
    public int getYMax(){
        return yMax;
    }

    public Boundry(int xMin, int xMax, int yMin, int yMax)
    {

        super();
        this.xMin = xMin;
        this.xMax = xMax;
        this.yMin = yMin;
        this.yMax = yMax;

    }

    public boolean containsCoordinate(int x, int y)
    {
        return (x >= this.getXMin() && x <= this.getXMax() && y >= this.getYMin() && y <= this.getYMax());
    }

    int xMin, xMax, yMin, yMax;
}

1 Ответ

0 голосов
/ 28 апреля 2020

Boundry должен быть объявлен как static для создания экземпляра без привязки к конкретному c экземпляру Quadtree.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...