📄 javalang.doc4.html
字号:
<a name="4876"></a>
<p><font size=-1>FF18;FULLWIDTH DIGIT EIGHT;Nd;0;EN;0038;8;8;8;N;;;;;</font><p>
<a name="4877"></a>
<p><font size=-1>FF19;FULLWIDTH DIGIT NINE;Nd;0;EN;0039;9;9;9;N;;;;;</font><p>
<a name="4879"></a>
<li>The following entries should have no lowercase equivalents:
<a name="4881"></a>
<p><font size=-1>03DA;GREEK LETTER STIGMA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER STIGMA;;;;</font><p>
<a name="4882"></a>
<p><font size=-1>03DC;GREEK LETTER DIGAMMA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER DIGAMMA;;;;</font><p>
<a name="4883"></a>
<p><font size=-1>03DE;GREEK LETTER KOPPA;Lu;0;L;;;;;N;GREEK CAPITAL LETTER KOPPA;;;;</font><p>
<a name="4884"></a>
<p><font size=-1>03E0;GREEK LETTER SAMPI;Lu;0;L;;;;;N;GREEK CAPITAL LETTER SAMPI;;;;</font><p>
<a name="4886"></a>
<li>This entry should have uppercase and titlecase equivalents as shown here:
<a name="4888"></a>
<p><font size=-1>03C2;GREEK SMALL LETTER FINAL SIGMA;Ll;0;L;;;;;N;;;03A3;;03A3</font><p>
</ul><a name="32371"></a>
It is anticipated that these problems will be corrected for Unicode version 2.0.
<p><a name="32372"></a>
Java 1.1 will include the methods defined here, either based on Unicode 1.1.5 or, we hope, updated versions of the methods that use the newer Unicode 2.0. The character attribute table for Unicode 2.0 is currently available on the World Wide Web as the file:<p>
<pre><a name="30276"></a>ftp://unicode.org/pub/MappingTables/UnicodeData-2.0.12.txt
</pre><a name="33816"></a>
If you are implementing a Java compiler or system, please refer to the page:
<p><pre><a name="33819"></a>http://java.sun.com/Series
</pre><a name="33820"></a>
which will be updated with information about the Unicode-dependent methods.
<p><a name="36558"></a>
The biggest change in Unicode 2.0 is a complete rearrangement of the Korean Hangul characters. There are numerous smaller improvements as well.<p>
<a name="33888"></a>
It is our intention that Java will track Unicode as it evolves over time. Given that full Unicode support is just emerging in the marketplace, and that changes in Unicode are in areas which are not yet widely used, this should cause minimal problems and further Java's goal of worldwide language support.<p>
<a name="1296"></a>
<p><font size=+1><strong>20.5.1 </strong> <code>public static final char <code><b>MIN_VALUE</b></code> = '\u0000';</code></font>
<p>
<a name="1297"></a>
The constant value of this field is the smallest value of type <code>char</code>.
<p><a name="23312"></a>
[This field is scheduled for introduction in Java version 1.1.]<p>
<a name="1298"></a>
<p><font size=+1><strong>20.5.2 </strong> <code>public static final char <code><b>MAX_VALUE</b></code> = '\uffff';</code></font>
<p>
<a name="1299"></a>
The constant value of this field is the smallest value of type <code>char</code>.
<p><a name="23342"></a>
[This field is scheduled for introduction in Java version 1.1.]<p>
<a name="1300"></a>
<p><font size=+1><strong>20.5.3 </strong> <code>public static final int <code><b>MIN_RADIX</b></code> = 2;</code></font>
<p>
<a name="1301"></a>
The constant value of this field is the smallest value permitted for the radix argument
in radix-conversion methods such as the <code>digit</code> method <a href="javalang.doc4.html#13834">(§20.5.23)</a>, the
<code>forDigit</code>  method <a href="javalang.doc4.html#13835">(§20.5.24)</a>, and the <code>toString</code> method of class <code>Integer</code>
<a href="javalang.doc6.html#14348">(§20.7)</a>.
<p><a name="1311"></a>
<p><font size=+1><strong>20.5.4 </strong> <code>public static final int <code><b>MAX_RADIX</b></code> = 36;</code></font>
<p>
<a name="1312"></a>
The constant value of this field is the largest value permitted for the radix argument
in radix-conversion methods such as the <code>digit</code> method <a href="javalang.doc4.html#13834">(§20.5.23)</a>, the <code>forDigit
</code> method <a href="javalang.doc4.html#13835">(§20.5.24)</a>, and the <code>toString</code> method of class <code>Integer</code> <a href="javalang.doc6.html#14348">(§20.7)</a>.
<p><a name="15390"></a>
<p><font size=+1><strong>20.5.5 </strong> <code>public <code><b>Character</b></code>(char value)</code></font>
<p>
<a name="15399"></a>
This constructor initializes a newly created <code>Character</code> object so that it represents
the primitive value that is the argument.
<p><a name="1273"></a>
<p><font size=+1><strong>20.5.6 </strong> <code>public String <code><b>toString</b></code>()</code></font>
<p>
<a name="20210"></a>
The result is a <code>String</code> whose length is <code>1</code> and whose sole component is the primitive
<code>char</code> value represented by this <code>Character</code> object.
<p><a name="20214"></a>
Overrides the <code>toString</code> method of <code>Object</code> <a href="javalang.doc1.html#1152">(§20.1.2)</a>.<p>
<a name="20216"></a>
<p><font size=+1><strong>20.5.7 </strong> <code>public boolean <code><b>equals</b></code>(Object obj)</code></font>
<p>
<a name="20217"></a>
The result is <code>true</code> if and only if the argument is not <code>null</code> and is a <code>Character</code>
object that represents the same <code>char</code> value as this <code>Character</code> object.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -