代码段
public void parsequery()
{
ParseQuery<ParseObject> query = ParseQuery.getQuery("Products");
query.whereEqualTo("StoreID", StoreID);
query.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> objects, ParseException e) {
if (e == null) {
for(int j=0; j<array.size();j++){
ParseQuery<ParseObject> query1 = ParseQuery.getQuery("Products");
c = array.get(j);
Log.d("C",""+c);
query1.whereEqualTo("SubCategory", c);
query1.findInBackground(new FindCallback<ParseObject>() {
public void done(List<ParseObject> objects1, ParseException e) {
if (e == null) {
productList.clear();
Log.d("Inner LOOP",""+objects1.size());
for(int i=0; i<objects1.size();i++)
{
SingleRow temp1 = new SingleRow(objects1.get(i).getString("Name"),objects1.get(i).getString("Description"),objects1.get(i).getInt("Price"),objects1.get(i).getString("Store"),objects1.get(i).getObjectId(),1);
productList.add(temp1);
}
productList temp11 = new productList(productList);
productList1.add(temp11);
}else{
Log.d("score", "Error: " + e.getMessage());
}
}
});
}
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
for(int k =0; k<array.size();k++){
Log.d("ProductList22",""+productList1.get(k).getProductList());
ArrayList<SingleRow> temp2 = productList1.get(k).getProductList();
SubcategorySinglerow temp = new SubcategorySinglerow(array.get(k),temp2);
categoryList.add(temp);
bool=true;
}
myList.addHeaderView(header, null, false);
Log.d("categoryListAdapter", ""+categoryList);
listAdapter = new MyListAdapter(getActivity(), categoryList);
myList.setAdapter(listAdapter);
layout.setVisibility(View.GONE);
myList.setVisibility(View.VISIBLE);
}
}, 5000);
} else {
Log.d("score", "Error: " + e.getMessage());
}
}
});
}
这里我传递的值为productList1.get(k).getProductList();通过productList子类化子类,我在每次循环执行后清除它,因为我需要为它添加新值。因此,当java传递值时,它最终传递productList中的每个productList1的productList的值。有没有办法在java中通过引用传递值。我如何解决我的问题。
答案 0 :(得分:0)
您可能会使您的变量成为该类的成员。
或者你可以做到
class MyValue {
public int val;
}
MyValue v = new MyValue();
v.val = 1;
// In other class
void modify(MyValue v) {
v.val = 2;
}
答案 1 :(得分:-1)
Java不是通过值传递,而不是真正的传递。 Java中类的所有变量都是引用。将它们视为C ++指针(它们通常指向指针,但现在这是不必要的细节)。所以你要按值传递指针,这与传递引用指向的值是一回事。如果更改引用中的值,则将全局更改。唯一的例外是基本数据类型 - int,boolean,double等,因为它们不是引用。
现在有些类是不可变的 - 没有可以改变其内部值的函数。对于这些,您可以通过将具有您想要的实际数据的数据结构作为实例变量传递来轻松解决它。