gpt4 book ai didi

java.lang.OutOfMemoryError。安卓

转载 作者:行者123 更新时间:2023-12-01 07:57:06 25 4
gpt4 key购买 nike

我在开发我的应用程序方面还没有太远,但我收到了 java.lang.OutOfMemoryError。这是日志猫:

02-24 14:02:54.957: E/art(28628): Throwing OutOfMemoryError "Failed to allocate a 28 byte allocation with 8 free bytes and 8B until OOM" (recursive case)
02-24 14:02:54.965: E/art(28628): "FinalizerDaemon" daemon prio=5 tid=8 Runnable
02-24 14:02:54.965: E/art(28628): | group="system" sCount=0 dsCount=0 obj=0x12c260e0 self=0xac4a5400
02-24 14:02:54.965: E/art(28628): | sysTid=28641 nice=0 cgrp=apps sched=0/0 handle=0xac4b9b00
02-24 14:02:54.965: E/art(28628): | state=R schedstat=( 2442370612 111306164 635 ) utm=229 stm=15 core=1 HZ=100
02-24 14:02:54.965: E/art(28628): | stack=0xb40fe000-0xb4100000 stackSize=1036KB
02-24 14:02:54.965: E/art(28628): | held mutexes= "mutator lock"(shared held)
02-24 14:02:54.965: E/art(28628): at com.android.internal.os.BinderInternal$GcWatcher.finalize(BinderInternal.java:51)
02-24 14:02:54.965: E/art(28628): at java.lang.Daemons$FinalizerDaemon.doFinalize(Daemons.java:190)
02-24 14:02:54.965: E/art(28628): at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:173)
02-24 14:02:54.965: E/art(28628): at java.lang.Thread.run(Thread.java:818)
02-24 14:02:54.965: E/System(28628): Uncaught exception thrown by finalizer

我正在尝试创建一个列表,但每当我检索数据以创建列表时,我都会收到错误。

这是扩展列表 fragment 的类

`

public class BillReminderListFragment extends ListFragment {
private ArrayList<Bill> mBills;

public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
mBills = BillLab.get(getActivity()).getBills(); <---(this is what is causing the error)
}
}

这是保存数据的类

public class BillLab {
private ArrayList<Bill> mBills;
private static BillLab sBillLab;
private Context mAppBillContext;

private BillLab(Context appBillContext){
mAppBillContext = appBillContext;
mBills = new ArrayList<Bill>();
for (int i = 0; 1 < 100; i ++){
Bill b = new Bill();
b.setTitle("Bill #" + i);
b.setDate(new Date());
mBills.add(b);
}
}

public static BillLab get(Context c){
if (sBillLab == null){
sBillLab = new BillLab(c.getApplicationContext());


}
return sBillLab;
}

public Bill getBill(UUID id){
for (Bill b: mBills) {
if (b.getId().equals(id))
return b;
}
return null;
}

public ArrayList<Bill> getBills(){
return mBills;
}

}

请帮忙。这是我在大学的最后一个项目,我没有太多时间。谢谢。

`

最佳答案

您的 for 循环有一个拼写错误: for (int i = 0; 1 < 100; i ++)

应该是i < 100 。由于 1 始终小于 100,因此内存不足。

关于java.lang.OutOfMemoryError。安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28689500/

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