android if 语句强制关闭

发布于 2024-11-09 11:05:48 字数 225 浏览 2 评论 0原文

所以我有以下代码。当我的应用程序中没有播放声音并且以下情况称为应用程序崩溃时。据我所知,如果没有声音播放,它应该跳过 if 语句......那么为什么它会崩溃呢?

public void IfSoundPlayingThenStop()
if (currentSound.isPlaying())
    {
        currentSound.release();
    }

So i have the following code. When no sound is playing in my app and the following is called the application crashes. From my knowledge it should skip the if statement if there is no sound playing...So why is it crashing?

public void IfSoundPlayingThenStop()
if (currentSound.isPlaying())
    {
        currentSound.release();
    }

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

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

发布评论

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

评论(1

嗼ふ静 2024-11-16 11:05:48

如果您只是不关心偶尔出现的 null 并且更愿意忽略它们,那么最简单的解决方案是:

if (currentSound != null && currentSound.isPlaying())
    currentSound.release();

否则,请在使用任何其他方法之前执行单独的 if(currentSound == null) 检查变量,并根据需要进行处理。

The simplest possible solution, if you just don't care about the occasional null and would prefer to ignore them:

if (currentSound != null && currentSound.isPlaying())
    currentSound.release();

Otherwise, do a separate if(currentSound == null) check before making any other use of the variable, and handle things as necessary.

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