jdk/src/java.base/share/classes/java/lang/Long.java
changeset 28059 e576535359cc
parent 26462 d6d34934be12
child 30645 ca213ba02185
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
   969     }
   969     }
   970 
   970 
   971     /**
   971     /**
   972      * Parses the string argument as an unsigned decimal {@code long}. The
   972      * Parses the string argument as an unsigned decimal {@code long}. The
   973      * characters in the string must all be decimal digits, except
   973      * characters in the string must all be decimal digits, except
   974      * that the first character may be an an ASCII plus sign {@code
   974      * that the first character may be an ASCII plus sign {@code
   975      * '+'} ({@code '\u005Cu002B'}). The resulting integer value
   975      * '+'} ({@code '\u005Cu002B'}). The resulting integer value
   976      * is returned, exactly as if the argument and the radix 10 were
   976      * is returned, exactly as if the argument and the radix 10 were
   977      * given as arguments to the {@link
   977      * given as arguments to the {@link
   978      * #parseUnsignedLong(java.lang.String, int)} method.
   978      * #parseUnsignedLong(java.lang.String, int)} method.
   979      *
   979      *