Discuss / Java / 那个组合是什么意思啊?该怎么使用啊?

那个组合是什么意思啊?该怎么使用啊?

Topic source

class book{

    public String name;

    public String getName() {

        return this.name;

    }

    public void setName() {

        this.name = name;

    }

}

class student extends Person {

    protected book b;

    protected int score;

}


  • 1

Reply