代码搜索:thread
找到约 10,000 项符合「thread」的源代码
代码结果 10,000
www.eeworm.com/read/233448/4687646
out thread_wait.out
creating thread
new thread running
notifying other thread
thread notified okay
www.eeworm.com/read/233448/4687670
java thread_interrupt.java
// Test interrupt() behaviour on a thread in wait(), sleep(), and spinning
// in a loop.
class ThreadBase extends Thread
{
boolean ready = false;
synchronized void ready()
{
ready = tru
www.eeworm.com/read/233448/4687674
java thread_wait.java
// Test basic thread creation and wait/notify functionality.
public class Thread_Wait implements Runnable
{
public static void main(String args[])
{
new Thread_Wait();
}
public Thread_
www.eeworm.com/read/233448/4692360
cc map_thread.cc
// Copyright (C) 2004, 2005 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
//