gpt4 book ai didi

android - 通过 Activity 传递复杂的对象引用

转载 作者:行者123 更新时间:2023-11-29 22:09:37 25 4
gpt4 key购买 nike

我有一个对象 X,其中包含对象 X 的列表。我在列表上循环并通过 Intent 将对象 X 从列表传递到另一个 Activity 。

在另一个 Activity 中,我修改了这个对象 X,然后返回了这个修改后的对象 X。

当我在我的第一个 Activity 中取回对象 X 时,我可以看到它已经被修改,这一点是可以的。

但是根对象 X(包含对象 X 的列表并且来自修改后的对象 X)不应该像我传递对 Intent 的引用一样被修改吗?

如果不是,我如何设法修改它,因为对象 X 在其他对象 X 中的根深度可以很深?

(告诉我我还不够清楚)。

感谢您的帮助。我有一个通过另一个 Activity 发送和对象 X 的 Activity

我的对象更准确(不要注意它是 Serializable 而不是 Parcelable 的事实,我稍后会解决这个问题):

public class CategoryBean implements Externalizable, Cloneable {
public static final boolean ACTIVE = true;
public static final boolean INACTIVE = false;

public static final int VALIDATED = 1;
public static final int NON_OBSERVED = 2;
public static final int IN_PROGRESS = 3;
public static final int PARTIEL = 4;

private String perimetre;
private CategoryBean parentCategory;
private List<CategoryBean> categoryList = new ArrayList<CategoryBean>();
protected String title;
/**
* Category validée ou non
*/
protected int state;
/**
* Category active ou inactive
*/
protected boolean activated = ACTIVE;

// public CategoryBean(Parcel in) {
// this.parentCategory = in.readParcelable(CategoryBean.class.getClassLoader());
// this.categoryList = Arrays.asList(in.readParcelableArray(CategoryBean.class.getClassLoader()));
// this.title = in.readString();
// }

/**
* @return the parentCategory
*/
public CategoryBean getParentCategory() {
return parentCategory;
}

/**
* @return the perimetre
*/
public String getPerimetre() {
return perimetre;
}

/**
* @param perimetre
* the perimetre to set
*/
public void setPerimetre(String perimetre) {
this.perimetre = perimetre;
}

/**
* @param parentCategory
* the parentCategory to set
*/
public void setParentCategory(CategoryBean parentCategory) {
this.parentCategory = parentCategory;
}

/**
* @return the category
*/
public List<CategoryBean> getCategoryList() {
return categoryList;
}

/**
* @param category
* the category to set
*/
public void setCategoryList(List<CategoryBean> categoryList) {
this.categoryList = categoryList;
}

/**
* @return the title
*/
public String getTitle() {
return title;
}

/**
* @param title
* the title to set
*/
public void setTitle(String title) {
this.title = title;
}

/**
* @return the state
*/
public int getState() {
return state;
}

/**
* @param state
* the state to set
*/
public void setState(int state) {
this.state = state;
}

/**
* @return the activated
*/
public boolean isActivated() {
return activated;
}

/**
* @param activated
* the activated to set
*/
public void setActivated(boolean activated) {
this.activated = activated;
}

@Override
public int hashCode() {
return parentCategory.hashCode() + categoryList.hashCode() + title.hashCode();
}

@SuppressWarnings("unchecked")
@Override
public void readExternal(ObjectInput input) throws IOException, ClassNotFoundException {
setPerimetre((String) input.readObject());
setParentCategory((CategoryBean) input.readObject());
setCategoryList((List<CategoryBean>) input.readObject());
setTitle((String) input.readObject());
setState((Integer) input.readObject());
setActivated((Boolean) input.readObject());
}

@Override
public void writeExternal(ObjectOutput output) throws IOException {
output.writeObject(getPerimetre());
output.writeObject(getParentCategory());
output.writeObject(getCategoryList());
output.writeObject(getTitle());
output.writeObject(getState());
output.writeObject(isActivated());
}

@Override
public CategoryBean clone() throws CloneNotSupportedException {
try {
CategoryBean clone = (CategoryBean) super.clone();
clone.setPerimetre(clone.getPerimetre());
clone.setParentCategory(clone.getParentCategory());
clone.setCategoryList(clone.getCategoryList());
clone.setTitle(clone.getTitle());
clone.setState(clone.getState());
clone.setActivated(clone.isActivated());
return clone;
} catch (CloneNotSupportedException e) {
throw new InternalError();
}
}

@Override
public String toString() {
StringBuilder sb = new StringBuilder("( CategoryBean -> ");
sb.append(" perimetre : ");
sb.append(getPerimetre());
sb.append(" parentCategory : ");
sb.append(getParentCategory() != null ? getParentCategory().getTitle() : null);
sb.append(" categoryList : ");
sb.append(getCategoryList());
sb.append(" title : ");
sb.append(getTitle());
sb.append(" state : ");
sb.append(getState());
sb.append(" activated : ");
sb.append(isActivated());
sb.append(" )");
return sb.toString();
}
}

最佳答案

一般来说,即使在 Java 中可行,我也不建议通过引用进行修改。它有几个缺点,当您有数千行代码并且其他几个开发人员在同一个项目上工作并且每个人都想知道为什么列表项被神奇地修改并且在哪里 :)

我建议您只需将修改后的对象存储回列表中以替换它。您所要做的就是跟踪索引。

使用List接口(interface)的set方法:

set(int index, Object element) 
Replaces the element at the specified position in this list with the specified element.

编辑:就低耦合和模块化而言,这也是一种更清洁的方法。因此,一项 Activity 不依赖于另一项 Activity ,可以针对特定任务重复使用。

要回答您的确切问题:我猜 Android 确实克隆了项目,或者由于项目的序列化,它被复制/新创建而不是通过引用传递,因为上述原因。

关于android - 通过 Activity 传递复杂的对象引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9977247/

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