码迷,mamicode.com
首页 >  
搜索关键字:equals    ( 4544个结果
关于hashcode的作用
假如你要将某对象存入hash相应的集合中(比如hashSet)时,是根据对象的hashcode来判断是否为同一对象的,一般默认hashcode是根据对象地址来算出的,而equals方法默认也是判断两对象地址是否相等,所以一般如果不重写equals方法,hashcode方法也不改写,而如果改写了e.....
分类:其他好文   时间:2014-10-07 22:35:14    阅读次数:250
Java 将自己定义的对象作为HashMap的key
须要继承Map的equals函数和hashCode函数package com.category;import java.util.HashMap;public class GenCategoryLevelData { private static HashMap categoryLevel = ne...
分类:编程语言   时间:2014-10-07 17:44:23    阅读次数:237
Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. For example: Given the below binary tree and sum ...
分类:其他好文   时间:2014-10-06 01:23:59    阅读次数:228
黑马程序员_Java基础之 equals 与 ==
在我们写程序时经常会去比较两个变量是否相等,一般我们有两种方式去比较:equals与==,但是很多情况是不明就里,最后得出错误的结论。本文详解了equals与==。 Java程序中测试两个变量是否的两种方式:一种是利用==另一种是equals方法。当时用 == 来判断两个变量是否相等时,如果两个变量...
分类:编程语言   时间:2014-10-05 21:28:39    阅读次数:289
Linq 实现左连接,右连接
左连接:var LeftJoin = from emp in ListOfEmployeesjoin dept in ListOfDepartmenton emp.DeptID equals dept.ID into JoinedEmpDept from dept in JoinedEmpDept....
分类:其他好文   时间:2014-10-05 17:37:48    阅读次数:143
java中的HashTable,HashMap和HashSet
目录(?)[+] 上篇博客中我们详细的分析了java集合《java中Map,List与Set的区别》。 同时我们也对HashSet和HashMap的核心方法hashcode进行了详解,见《探索equals()和hashCode()方法》。 万事俱备,那么下面我们就对基于hash算法的三个集合HashTable,HashSet和HashMap详解。 ...
分类:编程语言   时间:2014-10-05 13:17:58    阅读次数:272
leetcode - Path Sum
Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all the values along the path equals the given sum. For example: Given the below binary tree and sum ...
分类:其他好文   时间:2014-10-02 18:26:13    阅读次数:174
leetcode - Path Sum II
Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum. For example: Given the below binary tree and sum = 22, 5 / ...
分类:其他好文   时间:2014-10-02 18:25:03    阅读次数:153
Java中关于String类型的10个问题
1. 如何比较两个字符串?用“=”还是equals简单来说,“==”是用来检测俩引用是不是指向内存中的同一个对象,而equals()方法则检测的是两个对象的值是否相等。只要你项检测俩字符串是不是相等的,你就必须得用equals()方法。如果你知道“字符串保留(string intern)”的概念那就...
分类:编程语言   时间:2014-09-30 08:54:02    阅读次数:188
测试进行中
1,白盒的性能测试性能分析能力2,loadrunner原理性能测试不是简单系统方面的性能测试,能够支出系统性能只是第一步,系统级别的用loadrunner可以做到,定位性能瓶颈,改进方案要掌握白盒性能分析能力,从系统到模块级别,再到函数级别的定位。3,selenium原理4,关键字驱动5,..
分类:其他好文   时间:2014-09-30 04:41:32    阅读次数:176
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!