本文整理汇总了Java中org.jfree.data.time.Millisecond.hashCode方法的典型用法代码示例。如果您正苦于以下问题:Java Millisecond.hashCode方法的具体用法?Java Millisecond.hashCode怎么用?Java Millisecond.hashCode使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.data.time.Millisecond
的用法示例。
在下文中一共展示了Millisecond.hashCode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testHashcode
import org.jfree.data.time.Millisecond; //导入方法依赖的package包/类
/**
* Two objects that are equal are required to return the same hashCode.
*/
public void testHashcode() {
final Millisecond m1 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
final Millisecond m2 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
assertTrue(m1.equals(m2));
final int hash1 = m1.hashCode();
final int hash2 = m2.hashCode();
assertEquals(hash1, hash2);
}
示例2: testHashcode
import org.jfree.data.time.Millisecond; //导入方法依赖的package包/类
/**
* Two objects that are equal are required to return the same hashCode.
*/
public void testHashcode() {
Millisecond m1 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
Millisecond m2 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
assertTrue(m1.equals(m2));
int hash1 = m1.hashCode();
int hash2 = m2.hashCode();
assertEquals(hash1, hash2);
}
示例3: testHashcode
import org.jfree.data.time.Millisecond; //导入方法依赖的package包/类
/**
* Two objects that are equal are required to return the same hashCode.
*/
public void testHashcode() {
Millisecond m1 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
Millisecond m2 = new Millisecond(599, 23, 45, 7, 9, 10, 2007);
assertTrue(m1.equals(m2));
int hash1 = m1.hashCode();
int hash2 = m2.hashCode();
assertEquals(hash1, hash2);
}