用示例列出Java中的 hashCode() 方法
此方法用于为给定列表生成 hashCode。
句法:
int hashCode()
参数:此函数没有参数。
返回:此函数返回给定列表的 hashCode 值。
下面的程序显示了这种方法的实现。
方案一:
// Java code to show the implementation of
// hashCode method in list interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a list of type Linkedlist
List l = new LinkedList<>();
l.add(10);
l.add(15);
l.add(20);
System.out.println(l);
int hash = l.hashCode();
System.out.println(hash);
}
}
输出:
[10, 15, 20]
39886
程序 2:下面是显示使用 Linkedlist 实现 list.hashCode() 的代码。
// Java code to show the implementation of
// hashCode method in list interface
import java.util.*;
public class GfG {
// Driver code
public static void main(String[] args)
{
// Initializing a list of type Linkedlist
List l = new LinkedList<>();
l.add("10");
l.add("15");
l.add("20");
System.out.println(l);
int hash = l.hashCode();
System.out.println(hash);
}
}
输出:
[10, 15, 20]
1586008
参考:
甲骨文文档