jdk/src/java.base/share/classes/java/lang/Integer.java
author martin
Thu, 30 Oct 2014 07:31:41 -0700
changeset 28059 e576535359cc
parent 26462 d6d34934be12
child 31671 362e0c0acece
permissions -rw-r--r--
8067377: My hobby: caning, then then canning, the the can-can Summary: Fix ALL the stutters! Reviewed-by: rriggs, mchung, lancea
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 22102
diff changeset
     2
 * Copyright (c) 1994, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3964
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3964
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3964
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3964
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3964
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.lang;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
15136
c17824042364 8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents: 14507
diff changeset
    28
import java.lang.annotation.Native;
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
    29
import java.util.Objects;
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
    30
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 * The {@code Integer} class wraps a value of the primitive type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * {@code int} in an object. An object of type {@code Integer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * contains a single field whose type is {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <p>In addition, this class provides several methods for converting
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * an {@code int} to a {@code String} and a {@code String} to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * {@code int}, as well as other constants and methods useful when
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * dealing with an {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * <p>Implementation note: The implementations of the "bit twiddling"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * methods (such as {@link #highestOneBit(int) highestOneBit} and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * {@link #numberOfTrailingZeros(int) numberOfTrailingZeros}) are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * based on material from Henry S. Warren, Jr.'s <i>Hacker's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * Delight</i>, (Addison Wesley, 2002).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * @author  Lee Boynton
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * @author  Arthur van Hoff
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * @author  Joseph D. Darcy
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
    51
 * @since 1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
public final class Integer extends Number implements Comparable<Integer> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * A constant holding the minimum value an {@code int} can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * have, -2<sup>31</sup>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
15136
c17824042364 8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents: 14507
diff changeset
    58
    @Native public static final int   MIN_VALUE = 0x80000000;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     * A constant holding the maximum value an {@code int} can
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     * have, 2<sup>31</sup>-1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
     */
15136
c17824042364 8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents: 14507
diff changeset
    64
    @Native public static final int   MAX_VALUE = 0x7fffffff;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * The {@code Class} instance representing the primitive type
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     * {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
     *
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
    70
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
     */
11275
7cb0861d512f 7117612: Miscellaneous warnings in java.lang
omajid
parents: 10602
diff changeset
    72
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public static final Class<Integer>  TYPE = (Class<Integer>) Class.getPrimitiveClass("int");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * All possible chars for representing a number as a String
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    final static char[] digits = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        '0' , '1' , '2' , '3' , '4' , '5' ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        '6' , '7' , '8' , '9' , 'a' , 'b' ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        'c' , 'd' , 'e' , 'f' , 'g' , 'h' ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        'i' , 'j' , 'k' , 'l' , 'm' , 'n' ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        'o' , 'p' , 'q' , 'r' , 's' , 't' ,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        'u' , 'v' , 'w' , 'x' , 'y' , 'z'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * Returns a string representation of the first argument in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * radix specified by the second argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * <p>If the radix is smaller than {@code Character.MIN_RADIX}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * or larger than {@code Character.MAX_RADIX}, then the radix
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * {@code 10} is used instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * <p>If the first argument is negative, the first element of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * result is the ASCII minus character {@code '-'}
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
    97
     * ({@code '\u005Cu002D'}). If the first argument is not
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * negative, no sign character appears in the result.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * <p>The remaining characters of the result represent the magnitude
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * of the first argument. If the magnitude is zero, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * represented by a single zero character {@code '0'}
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   103
     * ({@code '\u005Cu0030'}); otherwise, the first character of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * the representation of the magnitude will not be the zero
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     * character.  The following ASCII characters are used as digits:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     *   {@code 0123456789abcdefghijklmnopqrstuvwxyz}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   111
     * These are {@code '\u005Cu0030'} through
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   112
     * {@code '\u005Cu0039'} and {@code '\u005Cu0061'} through
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   113
     * {@code '\u005Cu007A'}. If {@code radix} is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * <var>N</var>, then the first <var>N</var> of these characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * are used as radix-<var>N</var> digits in the order shown. Thus,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * the digits for hexadecimal (radix 16) are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * {@code 0123456789abcdef}. If uppercase letters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * desired, the {@link java.lang.String#toUpperCase()} method may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * be called on the result:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     *  {@code Integer.toString(n, 16).toUpperCase()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * @param   i       an integer to be converted to a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * @param   radix   the radix to use in the string representation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * @return  a string representation of the argument in the specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * @see     java.lang.Character#MAX_RADIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     * @see     java.lang.Character#MIN_RADIX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public static String toString(int i, int radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
            radix = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        /* Use the faster version */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        if (radix == 10) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            return toString(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        char buf[] = new char[33];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        boolean negative = (i < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        int charPos = 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        if (!negative) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
            i = -i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        while (i <= -radix) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            buf[charPos--] = digits[-(i % radix)];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            i = i / radix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        buf[charPos] = digits[-i];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        if (negative) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            buf[--charPos] = '-';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        return new String(buf, charPos, (33 - charPos));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
    /**
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   162
     * Returns a string representation of the first argument as an
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   163
     * unsigned integer value in the radix specified by the second
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   164
     * argument.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   165
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   166
     * <p>If the radix is smaller than {@code Character.MIN_RADIX}
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   167
     * or larger than {@code Character.MAX_RADIX}, then the radix
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   168
     * {@code 10} is used instead.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   169
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   170
     * <p>Note that since the first argument is treated as an unsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   171
     * value, no leading sign character is printed.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   172
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   173
     * <p>If the magnitude is zero, it is represented by a single zero
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   174
     * character {@code '0'} ({@code '\u005Cu0030'}); otherwise,
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   175
     * the first character of the representation of the magnitude will
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   176
     * not be the zero character.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   177
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   178
     * <p>The behavior of radixes and the characters used as digits
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   179
     * are the same as {@link #toString(int, int) toString}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   180
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   181
     * @param   i       an integer to be converted to an unsigned string.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   182
     * @param   radix   the radix to use in the string representation.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   183
     * @return  an unsigned string representation of the argument in the specified radix.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   184
     * @see     #toString(int, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   185
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   186
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   187
    public static String toUnsignedString(int i, int radix) {
17929
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   188
        return Long.toUnsignedString(toUnsignedLong(i), radix);
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   189
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   190
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   191
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * Returns a string representation of the integer argument as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     * unsigned integer in base&nbsp;16.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * <p>The unsigned integer value is the argument plus 2<sup>32</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * if the argument is negative; otherwise, it is equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     * argument.  This value is converted to a string of ASCII digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
     * in hexadecimal (base&nbsp;16) with no extra leading
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   199
     * {@code 0}s.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   200
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   201
     * <p>The value of the argument can be recovered from the returned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   202
     * string {@code s} by calling {@link
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   203
     * Integer#parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   204
     * Integer.parseUnsignedInt(s, 16)}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   205
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   206
     * <p>If the unsigned magnitude is zero, it is represented by a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   207
     * single zero character {@code '0'} ({@code '\u005Cu0030'});
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   208
     * otherwise, the first character of the representation of the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   209
     * unsigned magnitude will not be the zero character. The
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   210
     * following characters are used as hexadecimal digits:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     *  {@code 0123456789abcdef}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   216
     * These are the characters {@code '\u005Cu0030'} through
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   217
     * {@code '\u005Cu0039'} and {@code '\u005Cu0061'} through
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   218
     * {@code '\u005Cu0066'}. If uppercase letters are
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * desired, the {@link java.lang.String#toUpperCase()} method may
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * be called on the result:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     *  {@code Integer.toHexString(n).toUpperCase()}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @param   i   an integer to be converted to a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @return  the string representation of the unsigned integer value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     *          represented by the argument in hexadecimal (base&nbsp;16).
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   229
     * @see #parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   230
     * @see #toUnsignedString(int, int)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   231
     * @since   1.0.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    public static String toHexString(int i) {
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   234
        return toUnsignedString0(i, 4);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * Returns a string representation of the integer argument as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     * unsigned integer in base&nbsp;8.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * <p>The unsigned integer value is the argument plus 2<sup>32</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     * if the argument is negative; otherwise, it is equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     * argument.  This value is converted to a string of ASCII digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
     * in octal (base&nbsp;8) with no extra leading {@code 0}s.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
     *
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   246
     * <p>The value of the argument can be recovered from the returned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   247
     * string {@code s} by calling {@link
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   248
     * Integer#parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   249
     * Integer.parseUnsignedInt(s, 8)}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   250
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * <p>If the unsigned magnitude is zero, it is represented by a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   252
     * single zero character {@code '0'} ({@code '\u005Cu0030'});
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   253
     * otherwise, the first character of the representation of the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   254
     * unsigned magnitude will not be the zero character. The
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   255
     * following characters are used as octal digits:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * {@code 01234567}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     *
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   261
     * These are the characters {@code '\u005Cu0030'} through
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   262
     * {@code '\u005Cu0037'}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * @param   i   an integer to be converted to a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * @return  the string representation of the unsigned integer value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     *          represented by the argument in octal (base&nbsp;8).
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   267
     * @see #parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   268
     * @see #toUnsignedString(int, int)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   269
     * @since   1.0.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
    public static String toOctalString(int i) {
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   272
        return toUnsignedString0(i, 3);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * Returns a string representation of the integer argument as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     * unsigned integer in base&nbsp;2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     * <p>The unsigned integer value is the argument plus 2<sup>32</sup>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * if the argument is negative; otherwise it is equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     * argument.  This value is converted to a string of ASCII digits
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * in binary (base&nbsp;2) with no extra leading {@code 0}s.
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   283
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   284
     * <p>The value of the argument can be recovered from the returned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   285
     * string {@code s} by calling {@link
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   286
     * Integer#parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   287
     * Integer.parseUnsignedInt(s, 2)}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   288
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   289
     * <p>If the unsigned magnitude is zero, it is represented by a
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   290
     * single zero character {@code '0'} ({@code '\u005Cu0030'});
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   291
     * otherwise, the first character of the representation of the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   292
     * unsigned magnitude will not be the zero character. The
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   293
     * characters {@code '0'} ({@code '\u005Cu0030'}) and {@code
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   294
     * '1'} ({@code '\u005Cu0031'}) are used as binary digits.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @param   i   an integer to be converted to a string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * @return  the string representation of the unsigned integer value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *          represented by the argument in binary (base&nbsp;2).
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   299
     * @see #parseUnsignedInt(String, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   300
     * @see #toUnsignedString(int, int)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23010
diff changeset
   301
     * @since   1.0.2
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    public static String toBinaryString(int i) {
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   304
        return toUnsignedString0(i, 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Convert the integer to an unsigned number.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     */
17929
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   310
    private static String toUnsignedString0(int val, int shift) {
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   311
        // assert shift > 0 && shift <=5 : "Illegal shift value";
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   312
        int mag = Integer.SIZE - Integer.numberOfLeadingZeros(val);
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   313
        int chars = Math.max(((mag + (shift - 1)) / shift), 1);
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   314
        char[] buf = new char[chars];
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   315
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   316
        formatUnsignedInt(val, shift, buf, 0, chars);
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   317
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   318
        // Use special constructor which takes over "buf".
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   319
        return new String(buf, true);
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   320
    }
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   321
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   322
    /**
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   323
     * Format an {@code int} (treated as unsigned) into a character buffer. If
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   324
     * {@code len} exceeds the formatted ASCII representation of {@code val},
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   325
     * {@code buf} will be padded with leading zeroes.
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   326
     *
17929
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   327
     * @param val the unsigned int to format
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   328
     * @param shift the log2 of the base to format in (4 for hex, 3 for octal, 1 for binary)
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   329
     * @param buf the character buffer to write to
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   330
     * @param offset the offset in the destination buffer to start at
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   331
     * @param len the number of characters to write
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   332
     */
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   333
     static void formatUnsignedInt(int val, int shift, char[] buf, int offset, int len) {
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   334
        // assert shift > 0 && shift <=5 : "Illegal shift value";
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   335
        // assert offset >= 0 && offset < buf.length : "illegal offset";
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   336
        // assert len > 0 && (offset + len) <= buf.length : "illegal length";
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   337
        int charPos = offset + len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
        int radix = 1 << shift;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        int mask = radix - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
        do {
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   341
            buf[--charPos] = Integer.digits[val & mask];
17929
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
   342
            val >>>= shift;
25660
01fa3ccedf50 8050114: Expose Integer/Long formatUnsigned methods internally
redestad
parents: 25653
diff changeset
   343
        } while (charPos > offset);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    final static char [] DigitTens = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        '0', '0', '0', '0', '0', '0', '0', '0', '0', '0',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
        '1', '1', '1', '1', '1', '1', '1', '1', '1', '1',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        '2', '2', '2', '2', '2', '2', '2', '2', '2', '2',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
        '3', '3', '3', '3', '3', '3', '3', '3', '3', '3',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
        '4', '4', '4', '4', '4', '4', '4', '4', '4', '4',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        '5', '5', '5', '5', '5', '5', '5', '5', '5', '5',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
        '6', '6', '6', '6', '6', '6', '6', '6', '6', '6',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        '7', '7', '7', '7', '7', '7', '7', '7', '7', '7',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        '8', '8', '8', '8', '8', '8', '8', '8', '8', '8',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        '9', '9', '9', '9', '9', '9', '9', '9', '9', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
        } ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    final static char [] DigitOnes = {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        '0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        } ;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        // I use the "invariant division by multiplication" trick to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        // accelerate Integer.toString.  In particular we want to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        // avoid division by 10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        // The "trick" has roughly the same performance characteristics
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        // as the "classic" Integer.toString code on a non-JIT VM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
        // The trick avoids .rem and .div calls but has a longer code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        // path and is thus dominated by dispatch overhead.  In the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        // JIT case the dispatch overhead doesn't exist and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        // "trick" is considerably faster than the classic code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        // RE:  Division by Invariant Integers using Multiplication
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        //      T Gralund, P Montgomery
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        //      ACM PLDI 1994
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * Returns a {@code String} object representing the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * specified integer. The argument is converted to signed decimal
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * representation and returned as a string, exactly as if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * argument and radix 10 were given as arguments to the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * #toString(int, int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @param   i   an integer to be converted.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @return  a string representation of the argument in base&nbsp;10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public static String toString(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        if (i == Integer.MIN_VALUE)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            return "-2147483648";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        int size = (i < 0) ? stringSize(-i) + 1 : stringSize(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
        char[] buf = new char[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        getChars(i, size, buf);
12858
97e3f3f77254 6924259: Remove offset and count fields from java.lang.String
mduigou
parents: 12668
diff changeset
   404
        return new String(buf, true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    /**
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   408
     * Returns a string representation of the argument as an unsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   409
     * decimal value.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   410
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   411
     * The argument is converted to unsigned decimal representation
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   412
     * and returned as a string exactly as if the argument and radix
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   413
     * 10 were given as arguments to the {@link #toUnsignedString(int,
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   414
     * int)} method.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   415
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   416
     * @param   i  an integer to be converted to an unsigned string.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   417
     * @return  an unsigned string representation of the argument.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   418
     * @see     #toUnsignedString(int, int)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   419
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   420
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   421
    public static String toUnsignedString(int i) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   422
        return Long.toString(toUnsignedLong(i));
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   423
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   424
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   425
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * Places characters representing the integer i into the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     * character array buf. The characters are placed into
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * the buffer backwards starting with the least significant
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * digit at the specified index (exclusive), and working
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * backwards from there.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     * Will fail if i == Integer.MIN_VALUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
    static void getChars(int i, int index, char[] buf) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        int q, r;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
        int charPos = index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        char sign = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        if (i < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            sign = '-';
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
            i = -i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
        // Generate two digits per iteration
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
        while (i >= 65536) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
            q = i / 100;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        // really: r = i - (q * 100);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            r = i - ((q << 6) + (q << 5) + (q << 2));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
            i = q;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            buf [--charPos] = DigitOnes[r];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
            buf [--charPos] = DigitTens[r];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
        // Fall thru to fast mode for smaller numbers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        // assert(i <= 65536, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        for (;;) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
            q = (i * 52429) >>> (16+3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            r = i - ((q << 3) + (q << 1));  // r = i-(q*10) ...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
            buf [--charPos] = digits [r];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
            i = q;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            if (i == 0) break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        if (sign != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
            buf [--charPos] = sign;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    final static int [] sizeTable = { 9, 99, 999, 9999, 99999, 999999, 9999999,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
                                      99999999, 999999999, Integer.MAX_VALUE };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    // Requires positive x
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    static int stringSize(int x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        for (int i=0; ; i++)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
            if (x <= sizeTable[i])
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
                return i+1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * Parses the string argument as a signed integer in the radix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * specified by the second argument. The characters in the string
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     * must all be digits of the specified radix (as determined by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * whether {@link java.lang.Character#digit(char, int)} returns a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * nonnegative value), except that the first character may be an
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   484
     * ASCII minus sign {@code '-'} ({@code '\u005Cu002D'}) to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * indicate a negative value or an ASCII plus sign {@code '+'}
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   486
     * ({@code '\u005Cu002B'}) to indicate a positive value. The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * resulting integer value is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * <p>An exception of type {@code NumberFormatException} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     * thrown if any of the following situations occurs:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
     * <li>The first argument is {@code null} or is a string of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * length zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     * <li>The radix is either smaller than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * {@link java.lang.Character#MIN_RADIX} or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * larger than {@link java.lang.Character#MAX_RADIX}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     * <li>Any character of the string is not a digit of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * radix, except that the first character may be a minus sign
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   501
     * {@code '-'} ({@code '\u005Cu002D'}) or plus sign
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   502
     * {@code '+'} ({@code '\u005Cu002B'}) provided that the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     * string is longer than length 1.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
     * <li>The value represented by the string is not a value of type
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
     * <p>Examples:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
     * parseInt("0", 10) returns 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
     * parseInt("473", 10) returns 473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * parseInt("+42", 10) returns 42
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * parseInt("-0", 10) returns 0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * parseInt("-FF", 16) returns -255
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * parseInt("1100110", 2) returns 102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     * parseInt("2147483647", 10) returns 2147483647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * parseInt("-2147483648", 10) returns -2147483648
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * parseInt("2147483648", 10) throws a NumberFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * parseInt("99", 8) throws a NumberFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * parseInt("Kona", 10) throws a NumberFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     * parseInt("Kona", 27) returns 411787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * @param      s   the {@code String} containing the integer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     *                  representation to be parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     * @param      radix   the radix to be used while parsing {@code s}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
     * @return     the integer represented by the string argument in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
     *             specified radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
     * @exception  NumberFormatException if the {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
     *             does not contain a parsable {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
    public static int parseInt(String s, int radix)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
                throws NumberFormatException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    {
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   536
        /*
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   537
         * WARNING: This method may be invoked early during VM initialization
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   538
         * before IntegerCache is initialized. Care must be taken to not use
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   539
         * the valueOf method.
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   540
         */
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   541
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
        if (s == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
            throw new NumberFormatException("null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        if (radix < Character.MIN_RADIX) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            throw new NumberFormatException("radix " + radix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                                            " less than Character.MIN_RADIX");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
        if (radix > Character.MAX_RADIX) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            throw new NumberFormatException("radix " + radix +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                                            " greater than Character.MAX_RADIX");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        boolean negative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        int i = 0, len = s.length();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        int limit = -Integer.MAX_VALUE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        if (len > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
            char firstChar = s.charAt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
            if (firstChar < '0') { // Possible leading "+" or "-"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
                if (firstChar == '-') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
                    negative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                    limit = Integer.MIN_VALUE;
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   566
                } else if (firstChar != '+') {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                    throw NumberFormatException.forInputString(s);
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   568
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   570
                if (len == 1) { // Cannot have lone "+" or "-"
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
                    throw NumberFormatException.forInputString(s);
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   572
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                i++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            }
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   575
            int multmin = limit / radix;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   576
            int result = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            while (i < len) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
                // Accumulating negatively avoids surprises near MAX_VALUE
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   579
                int digit = Character.digit(s.charAt(i++), radix);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   580
                if (digit < 0 || result < multmin) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
                    throw NumberFormatException.forInputString(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
                result *= radix;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
                if (result < limit + digit) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                    throw NumberFormatException.forInputString(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
                result -= digit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            }
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   589
            return negative ? result : -result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
            throw NumberFormatException.forInputString(s);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
        }
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   593
    }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   594
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   595
    /**
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   596
     * Parses the {@link CharSequence} argument as a signed {@code int} in the
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   597
     * specified {@code radix}, beginning at the specified {@code beginIndex}
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   598
     * and extending to {@code endIndex - 1}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   599
     *
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   600
     * <p>The method does not take steps to guard against the
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   601
     * {@code CharSequence} being mutated while parsing.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   602
     *
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   603
     * @param      s   the {@code CharSequence} containing the {@code int}
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   604
     *                  representation to be parsed
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   605
     * @param      beginIndex   the beginning index, inclusive.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   606
     * @param      endIndex     the ending index, exclusive.
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   607
     * @param      radix   the radix to be used while parsing {@code s}.
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   608
     * @return     the signed {@code int} represented by the subsequence in
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   609
     *             the specified radix.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   610
     * @throws     NullPointerException  if {@code s} is null.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   611
     * @throws     IndexOutOfBoundsException  if {@code beginIndex} is
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   612
     *             negative, or if {@code beginIndex} is greater than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   613
     *             {@code endIndex} or if {@code endIndex} is greater than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   614
     *             {@code s.length()}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   615
     * @throws     NumberFormatException  if the {@code CharSequence} does not
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   616
     *             contain a parsable {@code int} in the specified
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   617
     *             {@code radix}, or if {@code radix} is either smaller than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   618
     *             {@link java.lang.Character#MIN_RADIX} or larger than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   619
     *             {@link java.lang.Character#MAX_RADIX}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   620
     * @since  1.9
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   621
     */
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   622
    public static int parseInt(CharSequence s, int beginIndex, int endIndex, int radix)
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   623
                throws NumberFormatException {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   624
        s = Objects.requireNonNull(s);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   625
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   626
        if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   627
            throw new IndexOutOfBoundsException();
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   628
        }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   629
        if (radix < Character.MIN_RADIX) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   630
            throw new NumberFormatException("radix " + radix +
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   631
                                            " less than Character.MIN_RADIX");
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   632
        }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   633
        if (radix > Character.MAX_RADIX) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   634
            throw new NumberFormatException("radix " + radix +
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   635
                                            " greater than Character.MAX_RADIX");
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   636
        }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   637
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   638
        boolean negative = false;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   639
        int i = beginIndex;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   640
        int limit = -Integer.MAX_VALUE;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   641
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   642
        if (i < endIndex) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   643
            char firstChar = s.charAt(i);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   644
            if (firstChar < '0') { // Possible leading "+" or "-"
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   645
                if (firstChar == '-') {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   646
                    negative = true;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   647
                    limit = Integer.MIN_VALUE;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   648
                } else if (firstChar != '+') {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   649
                    throw NumberFormatException.forCharSequence(s, beginIndex,
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   650
                            endIndex, i);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   651
                }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   652
                i++;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   653
                if (i == endIndex) { // Cannot have lone "+" or "-"
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   654
                    throw NumberFormatException.forCharSequence(s, beginIndex,
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   655
                            endIndex, i);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   656
                }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   657
            }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   658
            int multmin = limit / radix;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   659
            int result = 0;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   660
            while (i < endIndex) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   661
                // Accumulating negatively avoids surprises near MAX_VALUE
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   662
                int digit = Character.digit(s.charAt(i), radix);
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   663
                if (digit < 0 || result < multmin) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   664
                    throw NumberFormatException.forCharSequence(s, beginIndex,
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   665
                            endIndex, i);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   666
                }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   667
                result *= radix;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   668
                if (result < limit + digit) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   669
                    throw NumberFormatException.forCharSequence(s, beginIndex,
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   670
                            endIndex, i);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   671
                }
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   672
                i++;
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   673
                result -= digit;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   674
            }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   675
            return negative ? result : -result;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   676
        } else {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   677
            throw NumberFormatException.forInputString("");
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   678
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     * Parses the string argument as a signed decimal integer. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * characters in the string must all be decimal digits, except
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * that the first character may be an ASCII minus sign {@code '-'}
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   685
     * ({@code '\u005Cu002D'}) to indicate a negative value or an
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   686
     * ASCII plus sign {@code '+'} ({@code '\u005Cu002B'}) to
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * indicate a positive value. The resulting integer value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     * returned, exactly as if the argument and the radix 10 were
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * given as arguments to the {@link #parseInt(java.lang.String,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
     * int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     * @param s    a {@code String} containing the {@code int}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
     *             representation to be parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
     * @return     the integer value represented by the argument in decimal.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
     * @exception  NumberFormatException  if the string does not contain a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
     *               parsable integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    public static int parseInt(String s) throws NumberFormatException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        return parseInt(s,10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
    /**
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   703
     * Parses the string argument as an unsigned integer in the radix
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   704
     * specified by the second argument.  An unsigned integer maps the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   705
     * values usually associated with negative numbers to positive
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   706
     * numbers larger than {@code MAX_VALUE}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   707
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   708
     * The characters in the string must all be digits of the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   709
     * specified radix (as determined by whether {@link
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   710
     * java.lang.Character#digit(char, int)} returns a nonnegative
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   711
     * value), except that the first character may be an ASCII plus
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   712
     * sign {@code '+'} ({@code '\u005Cu002B'}). The resulting
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   713
     * integer value is returned.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   714
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   715
     * <p>An exception of type {@code NumberFormatException} is
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   716
     * thrown if any of the following situations occurs:
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   717
     * <ul>
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   718
     * <li>The first argument is {@code null} or is a string of
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   719
     * length zero.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   720
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   721
     * <li>The radix is either smaller than
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   722
     * {@link java.lang.Character#MIN_RADIX} or
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   723
     * larger than {@link java.lang.Character#MAX_RADIX}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   724
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   725
     * <li>Any character of the string is not a digit of the specified
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   726
     * radix, except that the first character may be a plus sign
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   727
     * {@code '+'} ({@code '\u005Cu002B'}) provided that the
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   728
     * string is longer than length 1.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   729
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   730
     * <li>The value represented by the string is larger than the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   731
     * largest unsigned {@code int}, 2<sup>32</sup>-1.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   732
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   733
     * </ul>
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   734
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   735
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   736
     * @param      s   the {@code String} containing the unsigned integer
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   737
     *                  representation to be parsed
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   738
     * @param      radix   the radix to be used while parsing {@code s}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   739
     * @return     the integer represented by the string argument in the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   740
     *             specified radix.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   741
     * @throws     NumberFormatException if the {@code String}
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   742
     *             does not contain a parsable {@code int}.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   743
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   744
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   745
    public static int parseUnsignedInt(String s, int radix)
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   746
                throws NumberFormatException {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   747
        if (s == null)  {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   748
            throw new NumberFormatException("null");
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   749
        }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   750
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   751
        int len = s.length();
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   752
        if (len > 0) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   753
            char firstChar = s.charAt(0);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   754
            if (firstChar == '-') {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   755
                throw new
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   756
                    NumberFormatException(String.format("Illegal leading minus sign " +
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   757
                                                       "on unsigned string %s.", s));
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   758
            } else {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   759
                if (len <= 5 || // Integer.MAX_VALUE in Character.MAX_RADIX is 6 digits
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   760
                    (radix == 10 && len <= 9) ) { // Integer.MAX_VALUE in base 10 is 10 digits
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   761
                    return parseInt(s, radix);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   762
                } else {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   763
                    long ell = Long.parseLong(s, radix);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   764
                    if ((ell & 0xffff_ffff_0000_0000L) == 0) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   765
                        return (int) ell;
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   766
                    } else {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   767
                        throw new
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   768
                            NumberFormatException(String.format("String value %s exceeds " +
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   769
                                                                "range of unsigned int.", s));
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   770
                    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   771
                }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   772
            }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   773
        } else {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   774
            throw NumberFormatException.forInputString(s);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   775
        }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   776
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   777
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   778
    /**
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   779
     * Parses the {@link CharSequence} argument as an unsigned {@code int} in
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   780
     * the specified {@code radix}, beginning at the specified
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   781
     * {@code beginIndex} and extending to {@code endIndex - 1}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   782
     *
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   783
     * <p>The method does not take steps to guard against the
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   784
     * {@code CharSequence} being mutated while parsing.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   785
     *
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   786
     * @param      s   the {@code CharSequence} containing the unsigned
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   787
     *                 {@code int} representation to be parsed
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   788
     * @param      beginIndex   the beginning index, inclusive.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   789
     * @param      endIndex     the ending index, exclusive.
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   790
     * @param      radix   the radix to be used while parsing {@code s}.
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   791
     * @return     the unsigned {@code int} represented by the subsequence in
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   792
     *             the specified radix.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   793
     * @throws     NullPointerException  if {@code s} is null.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   794
     * @throws     IndexOutOfBoundsException  if {@code beginIndex} is
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   795
     *             negative, or if {@code beginIndex} is greater than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   796
     *             {@code endIndex} or if {@code endIndex} is greater than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   797
     *             {@code s.length()}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   798
     * @throws     NumberFormatException  if the {@code CharSequence} does not
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   799
     *             contain a parsable unsigned {@code int} in the specified
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   800
     *             {@code radix}, or if {@code radix} is either smaller than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   801
     *             {@link java.lang.Character#MIN_RADIX} or larger than
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   802
     *             {@link java.lang.Character#MAX_RADIX}.
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   803
     * @since  1.9
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   804
     */
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   805
    public static int parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix)
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   806
                throws NumberFormatException {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   807
        s = Objects.requireNonNull(s);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   808
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   809
        if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   810
            throw new IndexOutOfBoundsException();
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   811
        }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   812
        int start = beginIndex, len = endIndex - beginIndex;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   813
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   814
        if (len > 0) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   815
            char firstChar = s.charAt(start);
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   816
            if (firstChar == '-') {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   817
                throw new
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   818
                    NumberFormatException(String.format("Illegal leading minus sign " +
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   819
                                                       "on unsigned string %s.", s));
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   820
            } else {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   821
                if (len <= 5 || // Integer.MAX_VALUE in Character.MAX_RADIX is 6 digits
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   822
                        (radix == 10 && len <= 9)) { // Integer.MAX_VALUE in base 10 is 10 digits
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   823
                    return parseInt(s, start, start + len, radix);
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   824
                } else {
26462
d6d34934be12 8055251: Re-examine Integer.parseInt and Long.parseLong methods
alanb
parents: 25859
diff changeset
   825
                    long ell = Long.parseLong(s, start, start + len, radix);
25653
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   826
                    if ((ell & 0xffff_ffff_0000_0000L) == 0) {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   827
                        return (int) ell;
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   828
                    } else {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   829
                        throw new
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   830
                            NumberFormatException(String.format("String value %s exceeds " +
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   831
                                                                "range of unsigned int.", s));
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   832
                    }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   833
                }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   834
            }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   835
        } else {
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   836
            throw new NumberFormatException("");
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   837
        }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   838
    }
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   839
41e5fa7ce490 8041972: Additional parse methods for Long/Integer
redestad
parents: 24865
diff changeset
   840
    /**
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   841
     * Parses the string argument as an unsigned decimal integer. The
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   842
     * characters in the string must all be decimal digits, except
28059
e576535359cc 8067377: My hobby: caning, then then canning, the the can-can
martin
parents: 26462
diff changeset
   843
     * that the first character may be an ASCII plus sign {@code
11676
7e75ec031b97 7132338: Use @code friendly idiom for '\' in javadoc
darcy
parents: 11672
diff changeset
   844
     * '+'} ({@code '\u005Cu002B'}). The resulting integer value
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   845
     * is returned, exactly as if the argument and the radix 10 were
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   846
     * given as arguments to the {@link
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   847
     * #parseUnsignedInt(java.lang.String, int)} method.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   848
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   849
     * @param s   a {@code String} containing the unsigned {@code int}
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   850
     *            representation to be parsed
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   851
     * @return    the unsigned integer value represented by the argument in decimal.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   852
     * @throws    NumberFormatException  if the string does not contain a
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   853
     *            parsable unsigned integer.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   854
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   855
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   856
    public static int parseUnsignedInt(String s) throws NumberFormatException {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   857
        return parseUnsignedInt(s, 10);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   858
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   859
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
   860
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * Returns an {@code Integer} object holding the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * extracted from the specified {@code String} when parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     * with the radix given by the second argument. The first argument
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
     * is interpreted as representing a signed integer in the radix
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
     * specified by the second argument, exactly as if the arguments
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
     * were given to the {@link #parseInt(java.lang.String, int)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
     * method. The result is an {@code Integer} object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
     * represents the integer value specified by the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
     * <p>In other words, this method returns an {@code Integer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
     * object equal to the value of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
     *  {@code new Integer(Integer.parseInt(s, radix))}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
     * @param      s   the string to be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
     * @param      radix the radix to be used in interpreting {@code s}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
     * @return     an {@code Integer} object holding the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
     *             represented by the string argument in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
     *             radix.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
     * @exception NumberFormatException if the {@code String}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
     *            does not contain a parsable {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
    public static Integer valueOf(String s, int radix) throws NumberFormatException {
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   886
        return Integer.valueOf(parseInt(s,radix));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
     * Returns an {@code Integer} object holding the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
     * value of the specified {@code String}. The argument is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
     * interpreted as representing a signed decimal integer, exactly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
     * as if the argument were given to the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
     * #parseInt(java.lang.String)} method. The result is an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
     * {@code Integer} object that represents the integer value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * specified by the string.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
     * <p>In other words, this method returns an {@code Integer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
     * object equal to the value of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
     *  {@code new Integer(Integer.parseInt(s))}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
     * @param      s   the string to be parsed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
     * @return     an {@code Integer} object holding the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
     *             represented by the string argument.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
     * @exception  NumberFormatException  if the string cannot be parsed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
     *             as an integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
     */
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   911
    public static Integer valueOf(String s) throws NumberFormatException {
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   912
        return Integer.valueOf(parseInt(s, 10));
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   913
    }
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   914
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   915
    /**
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   916
     * Cache to support the object identity semantics of autoboxing for values between
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   917
     * -128 and 127 (inclusive) as required by JLS.
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   918
     *
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   919
     * The cache is initialized on first usage.  The size of the cache
14014
da3648e13e67 8000269: Cleanup javadoc warnings
alanb
parents: 12858
diff changeset
   920
     * may be controlled by the {@code -XX:AutoBoxCacheMax=<size>} option.
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   921
     * During VM initialization, java.lang.Integer.IntegerCache.high property
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   922
     * may be set and saved in the private system properties in the
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   923
     * sun.misc.VM class.
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   924
     */
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   925
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
    private static class IntegerCache {
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   927
        static final int low = -128;
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   928
        static final int high;
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   929
        static final Integer cache[];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        static {
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   932
            // high value may be configured by property
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   933
            int h = 127;
6882
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   934
            String integerCacheHighPropValue =
637546039be3 6977738: Deadlock between java.lang.ClassLoader and java.util.Properties
mchung
parents: 5506
diff changeset
   935
                sun.misc.VM.getSavedProperty("java.lang.Integer.IntegerCache.high");
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   936
            if (integerCacheHighPropValue != null) {
18278
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   937
                try {
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   938
                    int i = parseInt(integerCacheHighPropValue);
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   939
                    i = Math.max(i, 127);
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   940
                    // Maximum array size is Integer.MAX_VALUE
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   941
                    h = Math.min(i, Integer.MAX_VALUE - (-low) -1);
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   942
                } catch( NumberFormatException nfe) {
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   943
                    // If the property cannot be parsed into an int, ignore it.
4b4381313a3c 8015395: NumberFormatException during startup if JDK-internal property java.lang.Integer.IntegerCache.high set to bad value
bpb
parents: 17929
diff changeset
   944
                }
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   945
            }
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   946
            high = h;
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   947
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   948
            cache = new Integer[(high - low) + 1];
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   949
            int j = low;
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   950
            for(int k = 0; k < cache.length; k++)
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   951
                cache[k] = new Integer(j++);
12668
9a70f2230e3b 7165102: Only run assertion on Integer autoboxing cache size once
forax
parents: 11676
diff changeset
   952
9a70f2230e3b 7165102: Only run assertion on Integer autoboxing cache size once
forax
parents: 11676
diff changeset
   953
            // range [-128, 127] must be interned (JLS7 5.1.7)
9a70f2230e3b 7165102: Only run assertion on Integer autoboxing cache size once
forax
parents: 11676
diff changeset
   954
            assert IntegerCache.high >= 127;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        }
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   956
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   957
        private IntegerCache() {}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
     * Returns an {@code Integer} instance representing the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
     * {@code int} value.  If a new {@code Integer} instance is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
     * required, this method should generally be used in preference to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
     * the constructor {@link #Integer(int)}, as this method is likely
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * to yield significantly better space and time performance by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     * caching frequently requested values.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
     *
3224
3aa65803ae07 6628737: Specification of wrapper class valueOf static factories should require caching
darcy
parents: 2425
diff changeset
   968
     * This method will always cache values in the range -128 to 127,
3aa65803ae07 6628737: Specification of wrapper class valueOf static factories should require caching
darcy
parents: 2425
diff changeset
   969
     * inclusive, and may cache other values outside of this range.
3aa65803ae07 6628737: Specification of wrapper class valueOf static factories should require caching
darcy
parents: 2425
diff changeset
   970
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     * @param  i an {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
     * @return an {@code Integer} instance representing {@code i}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
     * @since  1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
    public static Integer valueOf(int i) {
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   976
        if (i >= IntegerCache.low && i <= IntegerCache.high)
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
   977
            return IntegerCache.cache[i + (-IntegerCache.low)];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
        return new Integer(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
     * The value of the {@code Integer}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
     * @serial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
    private final int value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
     * Constructs a newly allocated {@code Integer} object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
     * represents the specified {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * @param   value   the value to be represented by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     *                  {@code Integer} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
    public Integer(int value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        this.value = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
     * Constructs a newly allocated {@code Integer} object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
     * represents the {@code int} value indicated by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
     * {@code String} parameter. The string is converted to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
     * {@code int} value in exactly the manner used by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
     * {@code parseInt} method for radix 10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
     * @param      s   the {@code String} to be converted to an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
     *                 {@code Integer}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
     * @exception  NumberFormatException  if the {@code String} does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
     *               contain a parsable integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
     * @see        java.lang.Integer#parseInt(java.lang.String, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
    public Integer(String s) throws NumberFormatException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        this.value = parseInt(s, 10);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
    /**
10067
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1017
     * Returns the value of this {@code Integer} as a {@code byte}
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1018
     * after a narrowing primitive conversion.
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1019
     * @jls 5.1.3 Narrowing Primitive Conversions
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
    public byte byteValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        return (byte)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
    /**
10067
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1026
     * Returns the value of this {@code Integer} as a {@code short}
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1027
     * after a narrowing primitive conversion.
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1028
     * @jls 5.1.3 Narrowing Primitive Conversions
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
    public short shortValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        return (short)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     * Returns the value of this {@code Integer} as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
     * {@code int}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
    public int intValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    /**
10067
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1043
     * Returns the value of this {@code Integer} as a {@code long}
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1044
     * after a widening primitive conversion.
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1045
     * @jls 5.1.2 Widening Primitive Conversions
17929
5ef41523c723 8007398: Peformance improvements to Integer and Long string formatting.
mduigou
parents: 15311
diff changeset
  1046
     * @see Integer#toUnsignedLong(int)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
    public long longValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        return (long)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
    /**
10067
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1053
     * Returns the value of this {@code Integer} as a {@code float}
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1054
     * after a widening primitive conversion.
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1055
     * @jls 5.1.2 Widening Primitive Conversions
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    public float floatValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
        return (float)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
    /**
10067
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1062
     * Returns the value of this {@code Integer} as a {@code double}
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1063
     * after a widening primitive conversion.
1263ecd22db6 6253144: Long narrowing conversion should describe the algorithm used and implied "risks"
darcy
parents: 9266
diff changeset
  1064
     * @jls 5.1.2 Widening Primitive Conversions
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
    public double doubleValue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
        return (double)value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
     * Returns a {@code String} object representing this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     * {@code Integer}'s value. The value is converted to signed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * decimal representation and returned as a string, exactly as if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     * the integer value were given as an argument to the {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     * java.lang.Integer#toString(int)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * @return  a string representation of the value of this object in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     *          base&nbsp;10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
    public String toString() {
3964
cf913644be58 6480728: Byte.valueOf(byte) returns a cached value but Byte.valueOf(String)
darcy
parents: 3943
diff changeset
  1081
        return toString(value);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
     * Returns a hash code for this {@code Integer}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
     * @return  a hash code value for this object, equal to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
     *          primitive {@code int} value represented by this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
     *          {@code Integer} object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
     */
14503
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1091
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
    public int hashCode() {
14503
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1093
        return Integer.hashCode(value);
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1094
    }
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1095
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1096
    /**
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1097
     * Returns a hash code for a {@code int} value; compatible with
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1098
     * {@code Integer.hashCode()}.
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1099
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1100
     * @param value the value to hash
14503
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1101
     * @since 1.8
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1102
     *
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1103
     * @return a hash code value for a {@code int} value.
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1104
     */
0729d9e57ed5 7088913: Add compatible static hashCode(primitive) to primitive wrapper classes
mduigou
parents: 14014
diff changeset
  1105
    public static int hashCode(int value) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
        return value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
     * Compares this object to the specified object.  The result is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
     * {@code true} if and only if the argument is not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
     * {@code null} and is an {@code Integer} object that
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
     * contains the same {@code int} value as this object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
     * @param   obj   the object to compare with.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
     * @return  {@code true} if the objects are the same;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
     *          {@code false} otherwise.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
    public boolean equals(Object obj) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        if (obj instanceof Integer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
            return value == ((Integer)obj).intValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
     * Determines the integer value of the system property with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
     * specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
     *
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1130
     * <p>The first argument is treated as the name of a system
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1131
     * property.  System properties are accessible through the {@link
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1132
     * java.lang.System#getProperty(java.lang.String)} method. The
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
     * string value of this property is then interpreted as an integer
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1134
     * value using the grammar supported by {@link Integer#decode decode} and
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1135
     * an {@code Integer} object representing this value is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
     *
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1137
     * <p>If there is no property with the specified name, if the
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1138
     * specified name is empty or {@code null}, or if the property
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1139
     * does not have the correct numeric format, then {@code null} is
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1140
     * returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
     * <p>In other words, this method returns an {@code Integer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
     * object equal to the value of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
     *  {@code getInteger(nm, null)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
     * @param   nm   property name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
     * @return  the {@code Integer} value of the property.
10602
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1151
     * @throws  SecurityException for the same reasons as
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1152
     *          {@link System#getProperty(String) System.getProperty}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
     * @see     java.lang.System#getProperty(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
     * @see     java.lang.System#getProperty(java.lang.String, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
    public static Integer getInteger(String nm) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        return getInteger(nm, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
     * Determines the integer value of the system property with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
     * specified name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
     *
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1164
     * <p>The first argument is treated as the name of a system
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1165
     * property.  System properties are accessible through the {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
     * java.lang.System#getProperty(java.lang.String)} method. The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
     * string value of this property is then interpreted as an integer
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1168
     * value using the grammar supported by {@link Integer#decode decode} and
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1169
     * an {@code Integer} object representing this value is returned.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     * <p>The second argument is the default value. An {@code Integer} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     * that represents the value of the second argument is returned if there
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
     * is no property of the specified name, if the property does not have
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
     * the correct numeric format, or if the specified name is empty or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
     * {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
     * <p>In other words, this method returns an {@code Integer} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
     * equal to the value of:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
     *  {@code getInteger(nm, new Integer(val))}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
     * but in practice it may be implemented in a manner such as:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
     * <blockquote><pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
     * Integer result = getInteger(nm, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
     * return (result == null) ? new Integer(val) : result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
     * </pre></blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
     * to avoid the unnecessary allocation of an {@code Integer}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
     * object when the default value is not needed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
     * @param   nm   property name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
     * @param   val   default value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
     * @return  the {@code Integer} value of the property.
10602
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1197
     * @throws  SecurityException for the same reasons as
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1198
     *          {@link System#getProperty(String) System.getProperty}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
     * @see     java.lang.System#getProperty(java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
     * @see     java.lang.System#getProperty(java.lang.String, java.lang.String)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
    public static Integer getInteger(String nm, int val) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        Integer result = getInteger(nm, null);
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
  1204
        return (result == null) ? Integer.valueOf(val) : result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
     * Returns the integer value of the system property with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
     * specified name.  The first argument is treated as the name of a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
     * system property.  System properties are accessible through the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
     * {@link java.lang.System#getProperty(java.lang.String)} method.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
     * The string value of this property is then interpreted as an
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1213
     * integer value, as per the {@link Integer#decode decode} method,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
     * and an {@code Integer} object representing this value is
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1215
     * returned; in summary:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
     * <ul><li>If the property value begins with the two ASCII characters
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
     *         {@code 0x} or the ASCII character {@code #}, not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
     *      followed by a minus sign, then the rest of it is parsed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
     *      hexadecimal integer exactly as by the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
     *      {@link #valueOf(java.lang.String, int)} with radix 16.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
     * <li>If the property value begins with the ASCII character
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
     *     {@code 0} followed by another character, it is parsed as an
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
     *     octal integer exactly as by the method
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
     *     {@link #valueOf(java.lang.String, int)} with radix 8.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
     * <li>Otherwise, the property value is parsed as a decimal integer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
     * exactly as by the method {@link #valueOf(java.lang.String, int)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
     * with radix 10.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
     * <p>The second argument is the default value. The default value is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
     * returned if there is no property of the specified name, if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
     * property does not have the correct numeric format, or if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
     * specified name is empty or {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
     * @param   nm   property name.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
     * @param   val   default value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
     * @return  the {@code Integer} value of the property.
10602
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1239
     * @throws  SecurityException for the same reasons as
ab8c1e3b237b 6268216: Boolean.getBoolean() throws SecurityException
darcy
parents: 10335
diff changeset
  1240
     *          {@link System#getProperty(String) System.getProperty}
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1241
     * @see     System#getProperty(java.lang.String)
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1242
     * @see     System#getProperty(java.lang.String, java.lang.String)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
    public static Integer getInteger(String nm, Integer val) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
        String v = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
            v = System.getProperty(nm);
10335
3c7eda3ab2f5 4850225: Integer.getInteger() : Bad reference to getProperty?
darcy
parents: 10067
diff changeset
  1248
        } catch (IllegalArgumentException | NullPointerException e) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        if (v != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                return Integer.decode(v);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
            } catch (NumberFormatException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        return val;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
     * Decodes a {@code String} into an {@code Integer}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
     * Accepts decimal, hexadecimal, and octal numbers given
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
     * by the following grammar:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
     * <blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
     * <dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
     * <dt><i>DecodableString:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
     * <dd><i>Sign<sub>opt</sub> DecimalNumeral</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
     * <dd><i>Sign<sub>opt</sub></i> {@code 0x} <i>HexDigits</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
     * <dd><i>Sign<sub>opt</sub></i> {@code 0X} <i>HexDigits</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
     * <dd><i>Sign<sub>opt</sub></i> {@code #} <i>HexDigits</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
     * <dd><i>Sign<sub>opt</sub></i> {@code 0} <i>OctalDigits</i>
21334
c60dfce46a77 8026982: javadoc errors in core libs
rriggs
parents: 18546
diff changeset
  1272
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     * <dt><i>Sign:</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * <dd>{@code -}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     * <dd>{@code +}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
     * </dl>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
     * </blockquote>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
     * <i>DecimalNumeral</i>, <i>HexDigits</i>, and <i>OctalDigits</i>
9266
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7668
diff changeset
  1280
     * are as defined in section 3.10.1 of
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7668
diff changeset
  1281
     * <cite>The Java&trade; Language Specification</cite>,
121fb370f179 7032960: API files in java.awt need to be updated for references to JVM Spec with editions/hyperlinks
jjh
parents: 7668
diff changeset
  1282
     * except that underscores are not accepted between digits.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
     * <p>The sequence of characters following an optional
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
     * sign and/or radix specifier ("{@code 0x}", "{@code 0X}",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
     * "{@code #}", or leading zero) is parsed as by the {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
     * Integer.parseInt} method with the indicated radix (10, 16, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
     * 8).  This sequence of characters must represent a positive
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
     * value or a {@link NumberFormatException} will be thrown.  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
     * result is negated if first character of the specified {@code
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
     * String} is the minus sign.  No whitespace characters are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
     * permitted in the {@code String}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
     * @param     nm the {@code String} to decode.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
     * @return    an {@code Integer} object holding the {@code int}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
     *             value represented by {@code nm}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
     * @exception NumberFormatException  if the {@code String} does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
     *            contain a parsable integer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
     * @see java.lang.Integer#parseInt(java.lang.String, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
    public static Integer decode(String nm) throws NumberFormatException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        int radix = 10;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
        int index = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
        boolean negative = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        Integer result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
        if (nm.length() == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
            throw new NumberFormatException("Zero length string");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        char firstChar = nm.charAt(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
        // Handle sign, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        if (firstChar == '-') {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
            negative = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
            index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        } else if (firstChar == '+')
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
            index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
        // Handle radix specifier, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
        if (nm.startsWith("0x", index) || nm.startsWith("0X", index)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
            index += 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
            radix = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
        else if (nm.startsWith("#", index)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
            index ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
            radix = 16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
        else if (nm.startsWith("0", index) && nm.length() > 1 + index) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
            index ++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
            radix = 8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        if (nm.startsWith("-", index) || nm.startsWith("+", index))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
            throw new NumberFormatException("Sign character in wrong position");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
            result = Integer.valueOf(nm.substring(index), radix);
2425
99a19a90813e 6807702: Integer.valueOf cache should be configurable
alanb
parents: 2
diff changeset
  1336
            result = negative ? Integer.valueOf(-result.intValue()) : result;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
        } catch (NumberFormatException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
            // If number is Integer.MIN_VALUE, we'll end up here. The next line
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
            // handles this case, and causes any genuine format error to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
            // rethrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
            String constant = negative ? ("-" + nm.substring(index))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
                                       : nm.substring(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
            result = Integer.valueOf(constant, radix);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
     * Compares two {@code Integer} objects numerically.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
     * @param   anotherInteger   the {@code Integer} to be compared.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
     * @return  the value {@code 0} if this {@code Integer} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
     *          equal to the argument {@code Integer}; a value less than
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
     *          {@code 0} if this {@code Integer} is numerically less
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
     *          than the argument {@code Integer}; and a value greater
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
     *          than {@code 0} if this {@code Integer} is numerically
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
     *           greater than the argument {@code Integer} (signed
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
     *           comparison).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
     * @since   1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
    public int compareTo(Integer anotherInteger) {
3943
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1362
        return compare(this.value, anotherInteger.value);
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1363
    }
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1364
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1365
    /**
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1366
     * Compares two {@code int} values numerically.
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1367
     * The value returned is identical to what would be returned by:
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1368
     * <pre>
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1369
     *    Integer.valueOf(x).compareTo(Integer.valueOf(y))
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1370
     * </pre>
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1371
     *
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1372
     * @param  x the first {@code int} to compare
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1373
     * @param  y the second {@code int} to compare
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1374
     * @return the value {@code 0} if {@code x == y};
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1375
     *         a value less than {@code 0} if {@code x < y}; and
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1376
     *         a value greater than {@code 0} if {@code x > y}
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1377
     * @since 1.7
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1378
     */
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1379
    public static int compare(int x, int y) {
11abf5578222 6582946: Add suite of compare(T, T) methods for ints, longs etc
martin
parents: 3288
diff changeset
  1380
        return (x < y) ? -1 : ((x == y) ? 0 : 1);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
11672
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1383
    /**
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1384
     * Compares two {@code int} values numerically treating the values
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1385
     * as unsigned.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1386
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1387
     * @param  x the first {@code int} to compare
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1388
     * @param  y the second {@code int} to compare
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1389
     * @return the value {@code 0} if {@code x == y}; a value less
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1390
     *         than {@code 0} if {@code x < y} as unsigned values; and
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1391
     *         a value greater than {@code 0} if {@code x > y} as
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1392
     *         unsigned values
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1393
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1394
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1395
    public static int compareUnsigned(int x, int y) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1396
        return compare(x + MIN_VALUE, y + MIN_VALUE);
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1397
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1398
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1399
    /**
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1400
     * Converts the argument to a {@code long} by an unsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1401
     * conversion.  In an unsigned conversion to a {@code long}, the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1402
     * high-order 32 bits of the {@code long} are zero and the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1403
     * low-order 32 bits are equal to the bits of the integer
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1404
     * argument.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1405
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1406
     * Consequently, zero and positive {@code int} values are mapped
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1407
     * to a numerically equal {@code long} value and negative {@code
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1408
     * int} values are mapped to a {@code long} value equal to the
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1409
     * input plus 2<sup>32</sup>.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1410
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1411
     * @param  x the value to convert to an unsigned {@code long}
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1412
     * @return the argument converted to {@code long} by an unsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1413
     *         conversion
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1414
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1415
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1416
    public static long toUnsignedLong(int x) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1417
        return ((long) x) & 0xffffffffL;
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1418
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1419
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1420
    /**
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1421
     * Returns the unsigned quotient of dividing the first argument by
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1422
     * the second where each argument and the result is interpreted as
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1423
     * an unsigned value.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1424
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1425
     * <p>Note that in two's complement arithmetic, the three other
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1426
     * basic arithmetic operations of add, subtract, and multiply are
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1427
     * bit-wise identical if the two operands are regarded as both
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1428
     * being signed or both being unsigned.  Therefore separate {@code
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1429
     * addUnsigned}, etc. methods are not provided.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1430
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1431
     * @param dividend the value to be divided
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1432
     * @param divisor the value doing the dividing
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1433
     * @return the unsigned quotient of the first argument divided by
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1434
     * the second argument
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1435
     * @see #remainderUnsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1436
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1437
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1438
    public static int divideUnsigned(int dividend, int divisor) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1439
        // In lieu of tricky code, for now just use long arithmetic.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1440
        return (int)(toUnsignedLong(dividend) / toUnsignedLong(divisor));
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1441
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1442
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1443
    /**
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1444
     * Returns the unsigned remainder from dividing the first argument
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1445
     * by the second where each argument and the result is interpreted
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1446
     * as an unsigned value.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1447
     *
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1448
     * @param dividend the value to be divided
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1449
     * @param divisor the value doing the dividing
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1450
     * @return the unsigned remainder of the first argument divided by
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1451
     * the second argument
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1452
     * @see #divideUnsigned
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1453
     * @since 1.8
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1454
     */
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1455
    public static int remainderUnsigned(int dividend, int divisor) {
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1456
        // In lieu of tricky code, for now just use long arithmetic.
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1457
        return (int)(toUnsignedLong(dividend) % toUnsignedLong(divisor));
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1458
    }
a5fa8c844b54 4504839: Java libraries should provide support for unsigned integer arithmetic
darcy
parents: 11275
diff changeset
  1459
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
    // Bit twiddling
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
     * The number of bits used to represent an {@code int} value in two's
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
     * complement binary form.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
     */
15136
c17824042364 8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents: 14507
diff changeset
  1469
    @Native public static final int SIZE = 32;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
    /**
14507
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1472
     * The number of bytes used to represent a {@code int} value in two's
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1473
     * complement binary form.
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1474
     *
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1475
     * @since 1.8
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1476
     */
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1477
    public static final int BYTES = SIZE / Byte.SIZE;
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1478
066419d1e732 7088952: Add size in bytes constant "BYTES" to primitive type wrapper types
mduigou
parents: 14503
diff changeset
  1479
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * Returns an {@code int} value with at most a single one-bit, in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
     * position of the highest-order ("leftmost") one-bit in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     * {@code int} value.  Returns zero if the specified value has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     * one-bits in its two's complement binary representation, that is, if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
     * is equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1486
     * @param i the value whose highest one bit is to be computed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
     * @return an {@code int} value with a single one-bit, in the position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
     *     of the highest-order one-bit in the specified value, or zero if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
     *     the specified value is itself equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
    public static int highestOneBit(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        // HD, Figure 3-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        i |= (i >>  1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        i |= (i >>  2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        i |= (i >>  4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        i |= (i >>  8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
        i |= (i >> 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        return i - (i >>> 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
     * Returns an {@code int} value with at most a single one-bit, in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
     * position of the lowest-order ("rightmost") one-bit in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
     * {@code int} value.  Returns zero if the specified value has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
     * one-bits in its two's complement binary representation, that is, if it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
     * is equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1509
     * @param i the value whose lowest one bit is to be computed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     * @return an {@code int} value with a single one-bit, in the position
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
     *     of the lowest-order one-bit in the specified value, or zero if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
     *     the specified value is itself equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
    public static int lowestOneBit(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
        // HD, Section 2-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
        return i & -i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
     * Returns the number of zero bits preceding the highest-order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     * ("leftmost") one-bit in the two's complement binary representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
     * of the specified {@code int} value.  Returns 32 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
     * specified value has no one-bits in its two's complement representation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
     * in other words if it is equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
     * <p>Note that this method is closely related to the logarithm base 2.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
     * For all positive {@code int} values x:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
     * <ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
     * <li>floor(log<sub>2</sub>(x)) = {@code 31 - numberOfLeadingZeros(x)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
     * <li>ceil(log<sub>2</sub>(x)) = {@code 32 - numberOfLeadingZeros(x - 1)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
     * </ul>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1534
     * @param i the value whose number of leading zeros is to be computed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
     * @return the number of zero bits preceding the highest-order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
     *     ("leftmost") one-bit in the two's complement binary representation
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
     *     of the specified {@code int} value, or 32 if the value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
     *     is equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
    public static int numberOfLeadingZeros(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
        // HD, Figure 5-6
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
        if (i == 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
            return 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
        int n = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
        if (i >>> 16 == 0) { n += 16; i <<= 16; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
        if (i >>> 24 == 0) { n +=  8; i <<=  8; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
        if (i >>> 28 == 0) { n +=  4; i <<=  4; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
        if (i >>> 30 == 0) { n +=  2; i <<=  2; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
        n -= i >>> 31;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
        return n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
     * Returns the number of zero bits following the lowest-order ("rightmost")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
     * one-bit in the two's complement binary representation of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
     * {@code int} value.  Returns 32 if the specified value has no
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
     * one-bits in its two's complement representation, in other words if it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
     * equal to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1561
     * @param i the value whose number of trailing zeros is to be computed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * @return the number of zero bits following the lowest-order ("rightmost")
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     *     one-bit in the two's complement binary representation of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     *     specified {@code int} value, or 32 if the value is equal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     *     to zero.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
    public static int numberOfTrailingZeros(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
        // HD, Figure 5-14
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
        int y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
        if (i == 0) return 32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
        int n = 31;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
        y = i <<16; if (y != 0) { n = n -16; i = y; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
        y = i << 8; if (y != 0) { n = n - 8; i = y; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
        y = i << 4; if (y != 0) { n = n - 4; i = y; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
        y = i << 2; if (y != 0) { n = n - 2; i = y; }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
        return n - ((i << 1) >>> 31);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
     * Returns the number of one-bits in the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
     * representation of the specified {@code int} value.  This function is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
     * sometimes referred to as the <i>population count</i>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1585
     * @param i the value whose bits are to be counted
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     * @return the number of one-bits in the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     *     representation of the specified {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
    public static int bitCount(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
        // HD, Figure 5-2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
        i = i - ((i >>> 1) & 0x55555555);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
        i = (i & 0x33333333) + ((i >>> 2) & 0x33333333);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
        i = (i + (i >>> 4)) & 0x0f0f0f0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
        i = i + (i >>> 8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
        i = i + (i >>> 16);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
        return i & 0x3f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
     * Returns the value obtained by rotating the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
     * representation of the specified {@code int} value left by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
     * specified number of bits.  (Bits shifted out of the left hand, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
     * high-order, side reenter on the right, or low-order.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
     * <p>Note that left rotation with a negative distance is equivalent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
     * right rotation: {@code rotateLeft(val, -distance) == rotateRight(val,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
     * distance)}.  Note also that rotation by any multiple of 32 is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
     * no-op, so all but the last five bits of the rotation distance can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
     * ignored, even if the distance is negative: {@code rotateLeft(val,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
     * distance) == rotateLeft(val, distance & 0x1F)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1613
     * @param i the value whose bits are to be rotated left
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1614
     * @param distance the number of bit positions to rotate left
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
     * @return the value obtained by rotating the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
     *     representation of the specified {@code int} value left by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
     *     specified number of bits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
    public static int rotateLeft(int i, int distance) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
        return (i << distance) | (i >>> -distance);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
     * Returns the value obtained by rotating the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
     * representation of the specified {@code int} value right by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
     * specified number of bits.  (Bits shifted out of the right hand, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
     * low-order, side reenter on the left, or high-order.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
     * <p>Note that right rotation with a negative distance is equivalent to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
     * left rotation: {@code rotateRight(val, -distance) == rotateLeft(val,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
     * distance)}.  Note also that rotation by any multiple of 32 is a
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
     * no-op, so all but the last five bits of the rotation distance can be
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
     * ignored, even if the distance is negative: {@code rotateRight(val,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
     * distance) == rotateRight(val, distance & 0x1F)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1637
     * @param i the value whose bits are to be rotated right
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1638
     * @param distance the number of bit positions to rotate right
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
     * @return the value obtained by rotating the two's complement binary
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
     *     representation of the specified {@code int} value right by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
     *     specified number of bits.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
    public static int rotateRight(int i, int distance) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
        return (i >>> distance) | (i << -distance);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
     * Returns the value obtained by reversing the order of the bits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
     * two's complement binary representation of the specified {@code int}
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
     * value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1653
     * @param i the value to be reversed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
     * @return the value obtained by reversing order of the bits in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
     *     specified {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
    public static int reverse(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
        // HD, Figure 7-1
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
        i = (i & 0x55555555) << 1 | (i >>> 1) & 0x55555555;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        i = (i & 0x33333333) << 2 | (i >>> 2) & 0x33333333;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
        i = (i & 0x0f0f0f0f) << 4 | (i >>> 4) & 0x0f0f0f0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
        i = (i << 24) | ((i & 0xff00) << 8) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
            ((i >>> 8) & 0xff00) | (i >>> 24);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
        return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
     * Returns the signum function of the specified {@code int} value.  (The
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
     * return value is -1 if the specified value is negative; 0 if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
     * specified value is zero; and 1 if the specified value is positive.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1673
     * @param i the value whose signum is to be computed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
     * @return the signum function of the specified {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
    public static int signum(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
        // HD, Section 2-7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
        return (i >> 31) | (-i >>> 31);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     * Returns the value obtained by reversing the order of the bytes in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     * two's complement representation of the specified {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     *
18546
862067c6481c 8017550: Fix doclint issues in java.lang and subpackages
darcy
parents: 18278
diff changeset
  1686
     * @param i the value whose bytes are to be reversed
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     * @return the value obtained by reversing the bytes in the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     *     {@code int} value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
    public static int reverseBytes(int i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
        return ((i >>> 24)           ) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
               ((i >>   8) &   0xFF00) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
               ((i <<   8) & 0xFF0000) |
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
               ((i << 24));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
15311
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1698
    /**
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1699
     * Adds two integers together as per the + operator.
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1700
     *
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1701
     * @param a the first operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1702
     * @param b the second operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1703
     * @return the sum of {@code a} and {@code b}
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1704
     * @see java.util.function.BinaryOperator
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1705
     * @since 1.8
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1706
     */
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1707
    public static int sum(int a, int b) {
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1708
        return a + b;
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1709
    }
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1710
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1711
    /**
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1712
     * Returns the greater of two {@code int} values
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1713
     * as if by calling {@link Math#max(int, int) Math.max}.
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1714
     *
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1715
     * @param a the first operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1716
     * @param b the second operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1717
     * @return the greater of {@code a} and {@code b}
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1718
     * @see java.util.function.BinaryOperator
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1719
     * @since 1.8
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1720
     */
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1721
    public static int max(int a, int b) {
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1722
        return Math.max(a, b);
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1723
    }
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1724
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1725
    /**
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1726
     * Returns the smaller of two {@code int} values
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1727
     * as if by calling {@link Math#min(int, int) Math.min}.
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1728
     *
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1729
     * @param a the first operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1730
     * @param b the second operand
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1731
     * @return the smaller of {@code a} and {@code b}
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1732
     * @see java.util.function.BinaryOperator
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1733
     * @since 1.8
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1734
     */
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1735
    public static int min(int a, int b) {
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1736
        return Math.min(a, b);
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1737
    }
be0ff4a719bf 8004201: Add static utility methods to primitives to be used for redution operations.
mduigou
parents: 15140
diff changeset
  1738
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
    /** use serialVersionUID from JDK 1.0.2 for interoperability */
15136
c17824042364 8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents: 14507
diff changeset
  1740
    @Native private static final long serialVersionUID = 1360826667806852920L;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
}