📄 thread.java
字号:
/* libaegisvm - The Aegis Virtual Machine for executing Java bytecode Copyright (C) 2001-2002 Philip W. L. Fong This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA*/package java.lang;import aegis.*;/** * \todo Not implemented yet. */public class Thread implements Runnable { public Thread() { throw new FeatureNotYetImplementedError(); } public Thread(Runnable target) { throw new FeatureNotYetImplementedError(); } public Thread(ThreadGroup group, Runnable target) { throw new FeatureNotYetImplementedError(); } public Thread(String name) { throw new FeatureNotYetImplementedError(); } public Thread(ThreadGroup group, String name) { throw new FeatureNotYetImplementedError(); } public Thread(Runnable target, String name) { throw new FeatureNotYetImplementedError(); } public Thread(ThreadGroup group, Runnable target, String name) { throw new FeatureNotYetImplementedError(); } public static Thread currentThread() { throw new FeatureNotYetImplementedError(); } public static void yield() { throw new FeatureNotYetImplementedError(); } public static void sleep(long millis) throws InterruptedException { throw new FeatureNotYetImplementedError(); } public static void sleep(long millis, int nanos) throws InterruptedException { throw new FeatureNotYetImplementedError(); } public void start() { throw new FeatureNotYetImplementedError(); } public void run() { throw new FeatureNotYetImplementedError(); } public void interrupt() { throw new FeatureNotYetImplementedError(); } public static boolean interrupted() { throw new FeatureNotYetImplementedError(); } public boolean isInterrupted() { throw new FeatureNotYetImplementedError(); } public void destroy() { throw new FeatureNotYetImplementedError(); } public final boolean isAlive() { throw new FeatureNotYetImplementedError(); } public final void setPriority(int newPriority) { throw new FeatureNotYetImplementedError(); } public final int getPriority() { throw new FeatureNotYetImplementedError(); } public final void setName(String name) { throw new FeatureNotYetImplementedError(); } public final String getName() { throw new FeatureNotYetImplementedError(); } public final ThreadGroup getThreadGroup() { throw new FeatureNotYetImplementedError(); } public static int activeCount() { throw new FeatureNotYetImplementedError(); } public static int enumerate(Thread[] tarray) { throw new FeatureNotYetImplementedError(); } public final void join(long millis) throws InterruptedException { throw new FeatureNotYetImplementedError(); } public final void join(long millis, int nanos) throws InterruptedException { throw new FeatureNotYetImplementedError(); } public final void join() throws InterruptedException { throw new FeatureNotYetImplementedError(); } public static void dumpStack() { throw new FeatureNotYetImplementedError(); } public final void setDaemon(boolean on) { throw new FeatureNotYetImplementedError(); } public final boolean isDaemon() { throw new FeatureNotYetImplementedError(); } public final void checkAccess() { throw new FeatureNotYetImplementedError(); } public String toString() { throw new FeatureNotYetImplementedError(); } public ClassLoader getContextClassLoader() { throw new FeatureNotYetImplementedError(); } public void setContextClassLoader(ClassLoader cl) { throw new FeatureNotYetImplementedError(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -