/* * Copyright (c) 1998, 2007, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ /** * @test * @bug 4143272 6548425 * @summary The natural ordering on Float and Double was not even a partial * order (i.e., it violated the contract of Comparable.compareTo). * Now it's a total ordering. Arrays.sort(double[]) * and Arrays.sort(double[]) reflect the new ordering. Also, * Arrays.equals(double[], double[]) and * Arrays.equals(float[], float[]) reflect the definition of * equality used by Float and Double. */ import java.util.*; @SuppressWarnings("unchecked") public class FloatDoubleOrder { void test(String[] args) throws Throwable { double[] unsortedDbl = new double[] {1.0d, 3.7d, Double.NaN, -2.0d, Double.POSITIVE_INFINITY, Double.NEGATIVE_INFINITY, 0.0d, -0.0d}; double[] sortedDbl = new double[] {Double.NEGATIVE_INFINITY, -2.0d, -0.0d, 0.0d, 1.0d, 3.7d, Double.POSITIVE_INFINITY, Double.NaN}; List list = new ArrayList(); for (int i=0; i 0) throw new AssertionError("Some tests failed");} }