
Java
李程一
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
数组、list之间的转换
List<Integer> paixu=new ArrayList<>(); paixu.add(3); paixu.add(7); paixu.add(4); paixu.add(22); paixu.add(1); paixu.add(5); Integer[] strArray = new Integer[5]; strArray[...原创 2020-07-02 17:26:22 · 277 阅读 · 0 评论 -
List、Map Collections.sort()排序
直接上代码吧public static void main(String[] args) { Map<String,Integer> map=new HashMap<>(); map.put("Ha",12); map.put("Hb",2); map.put("Hc",22); map.put("Hd",17); map.put("He",1); map.put(原创 2020-07-02 17:16:05 · 930 阅读 · 0 评论 -
GPS坐标转百度坐标
转自:https://blog.csdn.net/zkcharge/article/details/51727416static double pi = 3.14159265358979324;static double a = 6378245.0;static double ee = 0.00669342162296594323;public final static double ...转载 2019-06-11 15:01:37 · 1795 阅读 · 0 评论