JAVA语言
文章平均质量分 79
陈童鞋
这个作者很懒,什么都没留下…
展开
-
关于JAVA类型处理的效率
对于java小数的处理而言,在处理一个比较大的文档的过程中发现,使用double类型计算的时间大约是float计算时间的3倍左右。原创 2015-07-09 20:22:23 · 259 阅读 · 0 评论 -
leetcode438. Find All Anagrams in a String
@小花 题目描述: Given a string s and a non-empty string p, find all the start indices of p's anagrams in s. Strings consists of lowercase English letters only and the length of both strings s and p原创 2016-10-31 13:46:06 · 3391 阅读 · 1 评论 -
Integer与int的比较
直接上代码来说: public class Main{ public static void main(String[] args) { int i = 128; Integer i2 = 128; Integer i3 = new Integer(128); System.out.println(i == i2);//转载 2016-11-13 11:10:36 · 351 阅读 · 0 评论