- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图确保我从 HikariCP 池中获取相同的连接,并想使用 hashcode() 来测试它们是否相同。我得到不同的哈希值,这是否意味着我一定有不同的连接?
@Test
public void testDBConnectionPool() throws Exception {
logger.info("GlobalProps are the same. Instances-{}, {}, {}!", props.hashCode(), props1.hashCode(),
GlobalProps.getInstance().hashCode());
Connection con1 = DBConnectionPool.getInstance().getConnection();
if (con1 != null) {
PreparedStatement ps = con1.prepareStatement("SELECT count(*) FROM ALERT");
ResultSet rs = ps.executeQuery();
while (rs.next()) {
logger.info("Total Record Count: {} - Alert table", rs.getObject(1));
}
}
con1.close();
logger.info("Returned connection {} to the pool", con1.hashCode());
con1 = DBConnectionPool.getInstance().getConnection();
if (con1 != null) {
PreparedStatement ps = con1.prepareStatement("SELECT count(*) FROM ALERT");
ResultSet rs = ps.executeQuery();
while (rs.next()) {
logger.info("Total Record Count: {} - Alert table", rs.getObject(1));
}
}
con1.close();
logger.info("Returned connection {} to the pool", con1.hashCode());
}
期望不同的哈希值,但收到相同的哈希值。
最佳答案
does this mean I necessarily have different connections?
必然?不会。从一般意义上来说,同一个对象在不同时间有可能具有不同的哈希码。这取决于其类的 hashCode()
实现。但尽管如此,不同的哈希码很可能是不同对象的标志,并且在大多数情况下,我会认为提供其实例哈希码更改可能性的类是有缺陷的。
此外,如果同一个对象确实在不同时间报告了不同的哈希码,那么几乎肯定会传达有关该对象状态的信息,很可能意味着它在逻辑上应该被视为不同的对象。
但是我不太知道该怎么做:
Expected different hashes, but received the same hash.
这似乎与您之前的评论相矛盾,所以我只想说,具有相同的哈希不,在一般意义上,表明两个对象是相同的,无论是在实例身份意义或值(value)身份意义。
关于java - hashcode() 会为连接返回相同的哈希值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57499821/
class UserScoring implements Comparable { User user; int score; UserScoring(
当重写 Java 中的 equals() 和 hashcode() 方法时,为什么不经常使用它: public int hashCode() { return (int) this.hashC
给定java Object#hashCode文档快照: As much as is reasonably practical, the hashCode method defined by class
下面的代码(sign.hashCode())是给我签名的hashCode还是内存中对象的hash? try { PackageInfo packageInfo = getPackageMana
考虑: String[] segments = {"asdf", "qwerty", "blahblah", "alongerstring", "w349fe3434"}; String fullSt
在审查大型代码库时,我经常遇到这样的情况: @Override public int hashCode() { return someFieldValue.hashCode(); } 程序员不
在以下情况下,与下面的函数发生 HashCode 冲突的可能性有多大。 key[0]、key[1]、key[2]、key[3] 的随机整数值 使用具有以下约束的随机键值 键[0] <1,000,000
从 Java 7 开始,我们有了 o.hashCode(); Objects.hashCode(o); Objects.hash(o); 前两个与空检查大致相同,但最后一个是什么? When a si
这个问题已经有答案了: Objects.hash() vs Objects.hashCode(), clarification needed (3 个回答) 已关闭 6 年前。 一个简单、简短的问题:
我是否需要使用super.hashcode()来计算this.hashcode()? IDE(例如 IntelliJ Idea)可以生成 equals 和 hashcode。它可以使用 java.ut
class A { } class B extends A { void m1(){ System.out.println(this.hashCode());
我查看了Arrays.hashCode(char[] c)的源代码 我不太确定它适用的算法是否在所有情况下都能正常工作。 public static int hashCode(int a[])
我有两个表具有一对一的关系,如下所示: @Entity @Data @NoArgsConstructor @AllArgsConstructor public class Book { @Id
为什么stringObject的hashcode是我提供的字符串? String s = new String(); // here the hascode is 0. 但是当我获得我创建的某个对象的
public abstract class HolidayPackageVariant { private HolidayPackage holidayPackage; private String
这两个代码片段有什么区别? 片段 1: Object o = new Object(); int i = Objects.hashCode(o); 片段 2: Object o = new Objec
在 Java 8 中有一个类 java.util.Objects,其中包含 hashCode() 方法。同时 Google Guava 19 包含 com.google.common.base.Obj
我的一个类(class)中有以下方法。它只是 HashMap 的公共(public)包装器(名为 teamOfPlayer,具有 Player 对象的键和 Integer 对象的值),仅此而已。 pu
我在这里做错了什么? @Override public int hashCode() { HashCodeBuilder has
我有以下程序。 Employee employee1 = new Employee("Raghav1", 101); Employee employee2 = new Employee("Raghav
我是一名优秀的程序员,十分优秀!