gpt4 book ai didi

java - 自定义类变量被某些未知进程覆盖

转载 作者:行者123 更新时间:2023-12-01 20:22:12 24 4
gpt4 key购买 nike

我有一个由静态 ArrayList 对象组成的自定义类。由于某种我似乎无法弄清楚的原因,当我在另一个 ArrayList 对象上调用clear() 方法时,对象中的元素被覆盖。这就是我要说的:

Notice on the itemsArray.clear() line, I will explain further down below

public class AddItemsActivity extends AppCompatActivity{

// Global variables
// For the Description
private EditText descEditText;

// For the Price
private EditText priceEditText;

// Temporary array to store the list of items which will be passed into the Diner
public static ArrayList<Item> itemsArray = new ArrayList<>();

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

// THIS HAS PROBLEM!!!!
itemsArray.clear();
// Set the content to use the activity_add_items xml file
setContentView(R.layout.activity_add_items);

final ItemsListAdapter adapter = new ItemsListAdapter(this, itemsArray);
// Find the ListView to display the adapter on
ListView listView = (ListView) findViewById(R.id.items_list);

// Set the ListView with the adapter
listView.setAdapter(adapter);

Button addDetailsFragment = (Button) findViewById(R.id.add_item_button);
addDetailsFragment.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Setting up a new dialog
final Dialog dialog = new Dialog(AddItemsActivity.this);
dialog.setContentView(R.layout.item_add_dialog);
dialog.setCancelable(true);
dialog.setTitle(R.string.add_item_title);
dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
dialog.setCanceledOnTouchOutside(false);

Button num1 = (Button) dialog.findViewById(R.id.key_1);
Button num2 = (Button) dialog.findViewById(R.id.key_2);
Button num3 = (Button) dialog.findViewById(R.id.key_3);
Button num4 = (Button) dialog.findViewById(R.id.key_4);
Button num5 = (Button) dialog.findViewById(R.id.key_5);
Button num6 = (Button) dialog.findViewById(R.id.key_6);
Button num7 = (Button) dialog.findViewById(R.id.key_7);
Button num8 = (Button) dialog.findViewById(R.id.key_8);
Button num9 = (Button) dialog.findViewById(R.id.key_9);
Button num0 = (Button) dialog.findViewById(R.id.key_0);
Button numPeriod = (Button) dialog.findViewById(R.id.key_period);
Button numDel = (Button) dialog.findViewById(R.id.key_del);
Button numAdd = (Button) dialog.findViewById(R.id.key_add_item);

// Properties for description field
descEditText = (EditText) dialog.findViewById(R.id.details_desc_input);

// Properties for price field
priceEditText = (EditText) dialog.findViewById(R.id.details_price_input);

// Keypad OnClickListener to append or delete digits in the price input field
View.OnClickListener keyOnClickListener = new View.OnClickListener() {
@Override
// Program logic when one of the buttons is pressed
public void onClick(View v) {
priceEditText.requestFocus();
CharSequence originalText = priceEditText.getText();
Button button = (Button)v;
// Prevents app from crashing when trying to delete an empty field
if (button.getText() == getString(R.string.details_button_delete_text)
&& originalText != null && originalText.length()>0) {
// Deletes one character/digit, deletes '$' if required
if (originalText.length() == 2 && originalText.charAt(0) == '$') {
priceEditText.setText("");
} else {
priceEditText.setText("");
priceEditText.append(originalText.subSequence(0, originalText.length() - 1));
}
// Delete key does nothing instead of displaying 'Del'
} else if (button.getText() == getString(R.string.details_button_delete_text)) {
priceEditText.append("");
// Prevents a second period from appearing in the field
} else if (button.getText().toString()
.equals(getString(R.string.details_button_period_text))
&& originalText.toString().contains(".")) {
priceEditText.append("");
// Adds a $ sign
} else if (originalText == null || originalText.length() == 0) {
priceEditText.append("$");
priceEditText.append(button.getText());
// Else, input the digit pressed
} else {
priceEditText.append(button.getText());
}
}
};

// Add key OnClickListener to add items into Diner's editItemsArray
View.OnClickListener addOnClickListener = new View.OnClickListener() {
@Override
// Program logic when one of the buttons is pressed
public void onClick(View v) {
priceEditText.requestFocus();
CharSequence originalText = priceEditText.getText();
Button button = (Button)v;
// If the input field is empty, do nothing. Else, add the items
if (originalText == null && button.getText() == getString(R.string.details_button_add_text)) {
priceEditText.append("");
// Adds the items into the editItemsArray ArrayList
} else {
Item itemToAdd = new Item(descEditText.getText().toString(),
Double.parseDouble(priceEditText.getText().toString().replace("$",
"")));
itemsArray.add(itemToAdd);
adapter.notifyDataSetChanged();
dialog.dismiss();
Log.e("add item", "works");
}
Log.e("line1", "works");
}
};

num1.setOnClickListener(keyOnClickListener);
num2.setOnClickListener(keyOnClickListener);
num3.setOnClickListener(keyOnClickListener);
num4.setOnClickListener(keyOnClickListener);
num5.setOnClickListener(keyOnClickListener);
num6.setOnClickListener(keyOnClickListener);
num7.setOnClickListener(keyOnClickListener);
num8.setOnClickListener(keyOnClickListener);
num9.setOnClickListener(keyOnClickListener);
num0.setOnClickListener(keyOnClickListener);
numPeriod.setOnClickListener(keyOnClickListener);
numDel.setOnClickListener(keyOnClickListener);
numAdd.setOnClickListener(addOnClickListener);

/*
Request focus for the price input field such that focus is on that field when
the dialog opens
*/
priceEditText.requestFocus();
/*
Hide the appearance of any keyboard when the user presses on the price input field
so the user only uses the provided in app customised keypad
*/

// Hide default keyboard when focus is on this field
priceEditText.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
getWindow().setSoftInputMode(WindowManager
.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
Log.e("testonclickclose", "works");
}
});

priceEditText.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
InputMethodManager im = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(v.getWindowToken(), 0);
}
}
});

priceEditText.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return false;
}
});


dialog.show();

// Setting the size of the dialog
Window window = dialog.getWindow();
window.setLayout(WindowManager.LayoutParams.MATCH_PARENT,
WindowManager.LayoutParams.WRAP_CONTENT);
}
});

Button addNextDinerActivity = (Button) findViewById(R.id.item_done_button);
addNextDinerActivity.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// Assign the list of items to specified Diner (selected previously or
// currently adding)
// Get name of current diner
String nameOfCurrentDiner = Diner.getCurrentName();

// Iteration process to find the index of current Diner
int indexOfCurrentDiner = -1;
for (Diner list : AddDinerActivity.dinerArray) {
if (list.getmDinerName().equals(nameOfCurrentDiner)) {
// Stores in index in a variable
indexOfCurrentDiner = AddDinerActivity.dinerArray.indexOf(list);
}
}
// Instantiate a Diner object to be added later
ArrayList<Item> array = getItemsArray();
Diner dinerToAdd = new Diner(nameOfCurrentDiner, getCurrentBill(getItemsArray()), array);
// Sets a new Diner object to the index position found
AddDinerActivity.dinerArray.remove(indexOfCurrentDiner);
AddDinerActivity.dinerArray.add(indexOfCurrentDiner, dinerToAdd);
// Clears the editItemsArray when leaving activity

// Brings the user back to Diner list page
Intent addDiner = new Intent(AddItemsActivity.this, AddDinerActivity.class);
startActivity(addDiner);
}
});
// Method to calculate the current individual's bill
public double getCurrentBill(ArrayList<Item> list) {
double currentBill = 0;
for (Item item : list) {
currentBill += item.getmItemPrice();
}
return currentBill;
}

// Method to get current item array
public ArrayList<Item> getItemsArray() {
return itemsArray;
}
}

My Diner class is defined as below which consists of an ArrayList object named mDinerItemsList

public class Diner {

public static String currentName;

// To store the currentName
private String mDinerName;

// To store individual's total bill
private double mDinerBill;

// To store the individual's list of items (its description and price)
private ArrayList<Item> mDinerItemsList = new ArrayList<>();

// Class constructor
public Diner(String mDinerName, double mDinerBill, ArrayList<Item> DinerItemsList) {
this.mDinerName = mDinerName;
this.mDinerBill = mDinerBill;
mDinerItemsList = DinerItemsList;
}

// Class constructor with Name ONLY
public Diner(String mDinerName) {
this.mDinerName = mDinerName;
}

// Class constructor with Bill ONLY
public Diner(double mDinerBill) {
this.mDinerBill = mDinerBill;
}

// Class constructor with ItemsList ONLY
public Diner(ArrayList<Item> mDinerItemsList) {
this.mDinerItemsList = mDinerItemsList;
}

// Method to set the current name to identify current diner
public static void setCurrentName(String name) {
currentName = name;
}

// Method to return the current name to identify current diner
public static String getCurrentName() {
return currentName;
}

// Method to return Diner's Name
public String getmDinerName() {
return mDinerName;
}

// Method to return Diner's bill
public double getmDinerBill() {
return mDinerBill;
}

public void setmDinerName(String mDinerName) {
this.mDinerName = mDinerName;
}

// Method to put an item (description and price) into Diner's list of items
public void putmDinerItem(ArrayList<Item> array) {
mDinerItemsList = array;
}

// Method to return Diner's list of items in the form of ArrayList
public ArrayList<Item> getmDinerItemsList() {
return mDinerItemsList;
}
}

在 Activity 中按下按钮时,包含 descEditText 和 PriceEditText 字符串的单个对象将被添加到 itemsArray 中。然后,在我实例化新的 Diner 对象期间,该数组被传递到 mDinerItemsList。这些发生在 AddItemsActivity 结束之前。通过调试过程,我发现当第二次调用AddItemsActivity时,itemsArray.clear()以某种方式删除了我之前实例化的Diner对象的mDinerItemsList。每次调用该 Activity 时都会发生这种情况。因此,我无法在 mDinerItemsList 中为我想要创建的每个 Diner 对象存储任何 ArrayList。我哪里做错了??我几个小时以来一直试图解决这个问题!请帮忙!!!

最佳答案

问题是您只是传递列表而不是创建它的副本。因此实际上只有一个 List 对象,但有许多变量指向该列表。

例如:在 Diner 构造函数中,您只需将 mDinerItemsList 分配给传递的 DinerItemsList 即可。

// Class constructor
public Diner(String mDinerName, double mDinerBill, ArrayList<Item> DinerItemsList) {
this.mDinerName = mDinerName;
this.mDinerBill = mDinerBill;
mDinerItemsList = DinerItemsList;
}

所以当你这样做时

ArrayList<Item> array = getItemsArray();
Diner dinerToAdd = new Diner(nameOfCurrentDiner, getCurrentBill(getItemsArray()), array);

您只需将 getItemArray() 返回的静态列表传递给 Diner,新的 Diner 对象将指向完全相同的列表。

要解决该问题,您可以使用 ArrayList 复制构造函数,它将创建一个浅拷贝(一个单独的列表,指向与原始列表相同的对象):

mDinerItemsList = new ArrayList<>(DinerItemsList);

编辑:澄清一些非常简单的示例代码:

List<String> list1 = new ArrayList<String>();
List<String> list2 = list1;

在上面的示例中,您只有 1 个列表,但有 2 个变量指向它。调用list2.clear();还将清除 list1 (因为两个变量都指向只有 1 个 List)。你的代码做了同样的事情。它只是传递一个对象引用,但不会创建新的引用。

关于java - 自定义类变量被某些未知进程覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44550361/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com