gpt4 book ai didi

android - setLatitude setLongitude NullPointer 异常

转载 作者:太空狗 更新时间:2023-10-29 15:55:45 26 4
gpt4 key购买 nike

我有一个位置:

public Location temp;

现在我想记住 map 上的一些坐标,所以我这样做:

双 a = 40.156729, b = 44.47197;

temp.setLatitude(40.156729);
temp.setLongitude(44.47197);

这会抛出 NullPointerException。我也这样试过:

double a = 40.156729, b = 44.47197;
temp.setLatitude(a);
temp.setLongitude(b);

还是一样。

日志:

06-05 09:32:55.720: E/AndroidRuntime(1370): Caused by: java.lang.NullPointerException

谢谢。

最佳答案

初始化变量

  public Location temp = new Location("");

关于android - setLatitude setLongitude NullPointer 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10894982/

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