博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java之hashCode
阅读量:4982 次
发布时间:2019-06-12

本文共 1836 字,大约阅读时间需要 6 分钟。

package com.simope.myTest;import java.util.HashMap;import java.util.Map;public class Test20151022 {        public static void main(String[] args) {                int count = 0;                String str = "hello world";        String myStr = "hello world";                Map
map = new HashMap
(); Map
myMap = new HashMap
(); map.put("name", "zhangsan"); map.put("age", "12"); map.put("sex", "man"); myMap.put("name", "zhangsan"); myMap.put("age", "13"); myMap.put("sex", "women"); System.out.println((++count) + ": " + str.hashCode()); System.out.println((++count) + ": " + myStr.hashCode()); System.out.println("############################################"); System.out.println((++count) + ": " + map.get("name").hashCode()); System.out.println((++count) + ": " + map.get("age").hashCode()); System.out.println((++count) + ": " + map.get("sex").hashCode()); System.out.println("############################################"); System.out.println((++count) + ": " + myMap.get("name").hashCode()); System.out.println((++count) + ": " + myMap.get("age").hashCode()); System.out.println((++count) + ": " + myMap.get("sex").hashCode()); System.out.println("############################################"); System.out.println((++count) + ": " + str.getClass()); System.out.println((++count) + ": " + myMap.getClass()); System.out.println("############################################"); }}

 

转载于:https://www.cnblogs.com/JimLy-BUG/p/5026672.html

你可能感兴趣的文章
数据库锁表的分析与解决
查看>>
.NET跨平台之旅:在Linux上将ASP.NET 5运行日志写入文件
查看>>
[故障公告]14:39-15:39博客站点部分负载均衡遭遇3次20G以上的流量攻击
查看>>
面向中文的自然语言编程
查看>>
Flutter工程目录
查看>>
hive 函数 current_date()
查看>>
使用python+selenium对12306车票数据读取
查看>>
服务器Config文件不能查看的问题
查看>>
UIImage与CCSprite互相转换
查看>>
jsp详解
查看>>
大型网站架构图
查看>>
新概念英语(1-133)Sensational news!
查看>>
Magnifier笔记
查看>>
git项目,VSCode显示不同颜色块的含义
查看>>
串口配置
查看>>
centos的安装,网络的调试
查看>>
dfs枚举
查看>>
线程等待问题
查看>>
(四)rsync未授权访问
查看>>
喜欢就好
查看>>