Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/lang/ThreadDeath.java
/* * @(#)ThreadDeath.java 1.9 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.lang; /** * An instance of <code>ThreadDeath</code> is thrown in the victim * thread when the <code>stop</code> method with zero arguments in * class <code>Thread</code> is called. * <p> * An application should catch instances of this class only if it * must clean up after being terminated asynchronously. If * <code>ThreadDeath</code> is caught by a method, it is important * that it be rethrown so that the thread actually dies. * <p> * The top-level error handler does not print out a message if * <code>ThreadDeath</code> is never caught. * <p> * The class <code>ThreadDeath</code> is specifically a subclass of * <code>Error</code> rather than <code>Exception</code>, even though * it is a "normal occurrence", because many applications * catch all occurrences of <code>Exception</code> and then discard * the exception. * * @author unascribed * @version 1.9, 12/10/01 * @see java.lang.Thread#stop() * @since JDK1.0 */ public class ThreadDeath extends Error {}
⏎ java/lang/ThreadDeath.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 39574👍, 0💬
Popular Posts:
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
Apache Avalon began in 1999 as the Java Apache Server Framework and in late 2002 separated from the ...
JSP(tm) Standard Tag Library 1.0 implementation - Jakarta Taglibs hosts the Standard Taglib 1.0, an ...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...