我是新来爪哇的 所以请温柔点...
考虑以下 SchoppingList 类
:
public class ShoppingList {
...
public ItemPrices[] getSortedPrices(){
//do sorting stuff here etc
return ret.toArray(new ItemPrices[0]);
}
}
现在我有另一个班级叫做 hello
:
public class Hello {
...
private Groceries createGroceries() {
...
pricearray[] = ShoppingList.ItemPrices[] //????
...
}
}
我要指定我创建的数组价格数组, 以等同于在方法中返回的 ProjectPrice 数组 。
但是,我没有得到我想要的,什么才是这样做的正确方法?