?? pkg.html
字號(hào):
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>java.lang Examples from The Java Developers Almanac 1.4</TITLE>
<META CONTENT="Patrick Chan" NAME="AUTHOR">
<META CONTENT="Code Examples from the Java Developers Almanac 1.4" NAME="DESCRIPTION">
<META CONTENT="Java Examples" NAME="KEYWORDS">
<META CONTENT="Addison-Wesley/Patrick Chan" NAME="OWNER">
<META CONTENT="3/20/02" NAME="revision">
<STYLE TYPE="text/css">
<!-- BODY CODE {font-family: Courier, Monospace; font-size: 11pt} TABLE, BODY {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt} PRE {font-family: Courier, Monospace; font-size: 10pt} H2 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12pt} H3 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11pt} A.eglink {text-decoration: none} A:hover.eglink {text-decoration: underline} -->
</STYLE>
</HEAD>
<BODY>
<TABLE CELLSPACING="0" CELLPADDING="0" BORDER="0">
<TR>
<TD rowspan="3"><A HREF="/?l=ex"><IMG BORDER="0" ALIGN="BOTTOM" HSPACE="10" SRC="/egs/almanac14a.jpg"></A></TD><TD VALIGN="top"><font face="Times" size="6"><b>The Java Developers Almanac 1.4</b></font>
<br>
Order this book from <a href="/cgi-bin/scripts/redirect.pl?l=ex&url=http://www.amazon.com/exec/obidos/ASIN/0201752808/xeo">Amazon</a>.
</TD>
</TR>
<TR>
<TD align="right" valign="bottom">
<FORM method="get" action="/cgi-bin/search/find.pl">
<INPUT size="25" name="words" type="text"><INPUT value="Search" type="submit">
</FORM>
</TD>
</TR>
</TABLE>
<HR color="#6666cc">
<DIV ALIGN="LEFT">
<A HREF="/">Home</A>
>
<A HREF="../index.html">List of Packages</A>
</DIV>
<br>
<h2>java.lang</h2>
<TABLE CELLSPACING="0" CELLPADDING="5" BORDER="0" width="600">
<TR>
<TD HEIGHT="2" width="20" VALIGN="TOP"></TD><TD VALIGN="TOP">
e48. <a class="eglink" href="BasicApp.html">The Quintessential Java Application</a>
<br>
e49. <a class="eglink" href="Exit.html">Terminating the Application</a>
<br>
e50. <a class="eglink" href="ExitHook.html">Determining When the Application Is About to Exit</a>
<br>
e51. <a class="eglink" href="ElapsedTime.html">Computing Elapsed Time</a>
<br>
e52. <a class="eglink" href="LoadNative.html">Loading Native Code</a>
<br>
e53. <a class="eglink" href="Sortable.html">Implementing a Class That Can Be Sorted</a>
<br>
e54. <a class="eglink" href="Redirect.html">Redirecting Standard Output, and Error</a>
<br>
e55. <a class="eglink" href="GetHeapSize.html">Getting the Size of the Heap</a>
<br>
<br>
<a name="Objects"></a><b>Objects</b>
<hr>
e56. <a class="eglink" href="CloneObject.html">Cloning an Object</a>
<br>
e57. <a class="eglink" href="GetHash.html">Comparing Object Values Using Hash Codes</a>
<br>
e58. <a class="eglink" href="Wrap.html">Wrapping a Primitive Type in a Wrapper Object</a>
<br>
<br>
<a name="Classes"></a><b>Classes</b>
<hr>
e59. <a class="eglink" href="GetClass.html">Getting a Class Object</a>
<br>
e60. <a class="eglink" href="GetClassName.html">Getting the Name of a Class Object</a>
<br>
e61. <a class="eglink" href="IsClass.html">Determining If a Class Object Represents a Class or Interface</a>
<br>
e62. <a class="eglink" href="SuperClass.html">Getting the Superclass of an Object</a>
<br>
e63. <a class="eglink" href="SuperClass2.html">Getting the Superclass of a Class Object</a>
<br>
e64. <a class="eglink" href="GetImplements2.html">Listing the Interfaces That a Class Implements</a>
<br>
e65. <a class="eglink" href="GetImplements.html">Listing the Interfaces That an Interface Extends</a>
<br>
e66. <a class="eglink" href="GetPkg.html">Getting the Package of a Class</a>
<br>
e67. <a class="eglink" href="ClassOrigin.html">Determining from Where a Class Was Loaded</a>
<br>
e68. <a class="eglink" href="LoadClass.html">Loading a Class That Is Not on the Classpath</a>
<br>
e69. <a class="eglink" href="ReloadClass.html">Dynamically Reloading a Modified Class</a>
<br>
<br>
<a name="Strings"></a><b>Strings</b>
<hr>
e70. <a class="eglink" href="CreateUsingStringBuffer.html">Constructing a String</a>
<br>
e71. <a class="eglink" href="CompareStr.html">Comparing Strings</a>
<br>
e72. <a class="eglink" href="HasSubstr.html">Determining If a String Contains a Substring</a>
<br>
e73. <a class="eglink" href="GetSubstring.html">Getting a Substring from a String</a>
<br>
e74. <a class="eglink" href="SearchString.html">Searching a String for a Character or a Substring</a>
<br>
e75. <a class="eglink" href="ReplaceChar.html">Replacing Characters in a String</a>
<br>
e76. <a class="eglink" href="ReplaceString.html">Replacing Substrings in a String</a>
<br>
e77. <a class="eglink" href="UpperLower.html">Converting a String to Upper or Lower Case</a>
<br>
e78. <a class="eglink" href="PrimType2Str.html">Converting a Primitive Type Value to a String</a>
<br>
e79. <a class="eglink" href="UnicodeToUTF8.html">Converting Between Unicode and UTF-8</a>
<br>
e80. <a class="eglink" href="FindUnicodeBlock.html">Determining a Character's Unicode Block</a>
<br>
e81. <a class="eglink" href="IsJavaId.html">Determining If a String Is a Legal Java Identifier</a>
<br>
<br>
<a name="Numbers"></a><b>Numbers</b>
<hr>
e82. <a class="eglink" href="ConvertNum.html">Converting a String to a Number</a>
<br>
e83. <a class="eglink" href="ConvertNum2.html">Parsing and Formatting a Number into Binary, Octal, and Hexadecimal</a>
<br>
<br>
<a name="Arrays"></a><b>Arrays</b>
<hr>
e84. <a class="eglink" href="ShiftArray.html">Shifting Elements in an Array</a>
<br>
e85. <a class="eglink" href="CopyArray.html">Copying Elements from One Array to Another</a>
<br>
<br>
<a name="System%20Properties"></a><b>System Properties</b>
<hr>
e86. <a class="eglink" href="GetSystemProperty.html">Getting and Setting the Value of a System Property</a>
<br>
e87. <a class="eglink" href="PropCmdLine.html">Setting the Value of a System Property from the Command Line</a>
<br>
e88. <a class="eglink" href="GetAllSysProps.html">Listing All System Properties</a>
<br>
<br>
<a name="Commands"></a><b>Commands</b>
<hr>
e89. <a class="eglink" href="Exec.html">Executing a Command</a>
<br>
e90. <a class="eglink" href="ReadFromCommand.html">Reading Output from a Command</a>
<br>
e91. <a class="eglink" href="WriteToCommand.html">Sending Input to a Command</a>
<br>
<br>
<a name="Threads"></a><b>Threads</b>
<hr>
e92. <a class="eglink" href="BasicThread.html">Creating a Thread</a>
<br>
e93. <a class="eglink" href="StopThread.html">Stopping a Thread</a>
<br>
e94. <a class="eglink" href="IfStopped.html">Determining When a Thread Has Finished</a>
<br>
e95. <a class="eglink" href="Sleep.html">Pausing the Current Thread</a>
<br>
e96. <a class="eglink" href="PauseThread.html">Pausing a Thread</a>
<br>
e97. <a class="eglink" href="IfLocked.html">Determining If the Current Thread Is Holding a Synchronized Lock</a>
<br>
e98. <a class="eglink" href="DaemonThread.html">Allowing an Application with Live Threads to Exit</a>
<br>
e99. <a class="eglink" href="ListThreads.html">Listing All Running Threads</a>
<br>
e100. <a class="eglink" href="TLocal.html">Using a Thread-local Variable</a>
<br>
e101. <a class="eglink" href="GetStack.html">Getting the Stack Trace of an Exception</a>
<br>
e102. <a class="eglink" href="WorkQueue.html">Implementing a Work Queue</a>
<br>
<br>
<a name="Assertions"></a><b>Assertions</b>
<hr>
e103. <a class="eglink" href="assert_CompileAssert.html">Compiling a Program with Assertions</a>
<br>
e104. <a class="eglink" href="assert_EnableAssert.html">Enabling Assertions from the Command Line</a>
<br>
e105. <a class="eglink" href="assert_AssertError.html">Handling an Assertion Error</a>
<br>
</TD>
</TR>
</TABLE>
<br>
<FONT FACE="Verdana, Arial, Helvetica, sans-serif" SIZE="0">
© 2002 Addison-Wesley.
</FONT>
</BODY>
</HTML>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -