本文整理汇总了Java中org.jfree.chart.HashUtilities.hashCodeForDoubleArray方法的典型用法代码示例。如果您正苦于以下问题:Java HashUtilities.hashCodeForDoubleArray方法的具体用法?Java HashUtilities.hashCodeForDoubleArray怎么用?Java HashUtilities.hashCodeForDoubleArray使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.jfree.chart.HashUtilities
的用法示例。
在下文中一共展示了HashUtilities.hashCodeForDoubleArray方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testHashCodeForDoubleArray
import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
* Some sanity checks for the hashCodeForDoubleArray() method.
*/
public void testHashCodeForDoubleArray() {
double[] a1 = new double[] { 1.0 };
double[] a2 = new double[] { 1.0 };
int h1 = HashUtilities.hashCodeForDoubleArray(a1);
int h2 = HashUtilities.hashCodeForDoubleArray(a2);
assertTrue(h1 == h2);
double[] a3 = new double[] { 0.5, 1.0 };
int h3 = HashUtilities.hashCodeForDoubleArray(a3);
assertFalse(h1 == h3);
}
示例2: hashCode
import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
* Returns a hash code for this instance.
*
* @return A hash code.
*/
public int hashCode() {
int result = 193;
result = 37 * result + HashUtilities.hashCodeForDoubleArray(
this.polygon);
result = 37 * result + HashUtilities.hashCodeForPaint(this.fillPaint);
result = 37 * result + HashUtilities.hashCodeForPaint(
this.outlinePaint);
if (this.stroke != null) {
result = 37 * result + this.stroke.hashCode();
}
return result;
}
示例3: hashCode
import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
* Returns a hash code for this instance.
*
* @return A hash code.
*/
@Override
public int hashCode() {
int result = 193;
result = 37 * result + HashUtilities.hashCodeForDoubleArray(
this.polygon);
result = 37 * result + HashUtilities.hashCodeForPaint(this.fillPaint);
result = 37 * result + HashUtilities.hashCodeForPaint(
this.outlinePaint);
if (this.stroke != null) {
result = 37 * result + this.stroke.hashCode();
}
return result;
}
示例4: hashCode
import org.jfree.chart.HashUtilities; //导入方法依赖的package包/类
/**
* Returns a hash code for this instance.
*
* @return A hash code.
*/
@Override
public int hashCode() {
return HashUtilities.hashCodeForDoubleArray(this.coefficients);
}