空指针Ex.由 NullPointerEx 引起。由 NullPointerEx 引起

发布于 12-05 10:38 字数 633 浏览 0 评论 0原文

我尝试运行我的 Android 应用程序时遇到这个奇怪的异常。我正在使用普通的 Activity 类,并且我已经成功地使 ListView 正常工作。我已将 onClickListerner 添加到列表项中。我在不同场合多次收到此错误消息。

为什么异常会被链接起来?

cause  NullPointerException  (id=830007823976)  
    -> cause    NullPointerException  (id=830007823976) 
        -> cause    NullPointerException  (id=830007823976) 
            -> cause    NullPointerException  (id=830007823976) 
                -> cause    NullPointerException  (id=830007823976) 
                detailMessage   null    
                stackState   (id=830007824008)  
                stackTrace  null    
             .....

I get this weird exception I try to run my Android application. I'm using a normal Activity-class and I've managed to get a ListView up a working. I've added a onClickListerner to the listitems. I've got this error message several times on various occasions.

Why are the exceptions chained?

cause  NullPointerException  (id=830007823976)  
    -> cause    NullPointerException  (id=830007823976) 
        -> cause    NullPointerException  (id=830007823976) 
            -> cause    NullPointerException  (id=830007823976) 
                -> cause    NullPointerException  (id=830007823976) 
                detailMessage   null    
                stackState   (id=830007824008)  
                stackTrace  null    
             .....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谢绝鈎搭2024-12-12 10:38:41

请注意,ID 都是相同的 - 非链式异常本身就是原因。这里只有一个 NullPointerException,因此您的任务是找到取消引用 null 值的行,以及它是如何到达那里的。

Note that the IDs are all the same - non-chained exceptions have themselves as the cause. There is only one NullPointerException here, so your task is to find the line where a null value is being dereferenced, and how it got there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文