我想将以下号码转换为双号。
Number mMax_Distance = ParseUser.getCurrentUser().getNumber("Maximum_Distance");
我正在使用Parse,在其中我有一个名为Maximum_distance的列,它被归类为数字。
我需要将其转换为数字,因为我想在以下行中使用:
query.whereWithinKilometers("location", point, mMax_Distance);
其中mMax_Distance必须是双
另一种解决方法是将其直接存储为double而不是数字。但是,它使用搜索栏值进行分类,用户通过搜索栏确定其最大距离,我相信搜索栏只存储数字。
currentUser.put("Maximum_Distance", seekBarDistance.getProgress());
非常感谢任何帮助。如果您需要澄清,请告诉我。