搜索资源列表
javathread
- java 多线程同步-multithreaded synchronization
CovertToFlv
- JSP上传视频后自动转成flv的核心JAVA方法 使用的时候只要通过ConvertThreadProxy 类的静态方法将源视频绝对地址(包括文件名+括展名)和要生成的FLV文件的绝对地址(包括文件名+括展名)以字符串的方式传进去即可!因为用的是多线程,所以转换过程不会占用当前线程! 核心转换类是线程同步的,所以您不用担心并法问题,因为一次只能转换一个文件!-JSP automatically transferred into the core Java flv ways
horse
- 五匹马赛跑,多线程同步实现马过桥,到达终点时显示时间,蛮好玩的
线程同步小程序
- 线程小程序(售票员卖票)-small thread (conductor sells tickets for the Taiwan)
同步的发送线程与接收线程
- 同步的发送线程与接收线程-threads simultaneously transmit and receive threads
java--- 线程同步
- java实现的线程同步-achieve simultaneous threads
philosopher(1.6)
- 哲学家进餐问题——Java语言实现 哲学家进餐问题是一个多线程运用的经典例子,涉及到线程同步/互斥,临界区访问问题以及一个避免死锁的解决方法。 有五个哲学家绕着圆桌坐,每个哲学家面前有一盘面,两人之间有一支筷子,这样每个哲学家左右各有一支筷子。 哲学家有2个状态,思考或者拿起筷子吃饭。如果哲学家拿到一只筷子,不能吃饭,直到拿到2只才能吃饭,并且一次只能拿起身边的一支筷子。一旦拿起便不会放下筷子直到把饭吃完,此时才把这双筷子放回原处。 如果,很不幸地,每个哲学家拿起
java_threaddemo
- 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining philosophers is a classic multi-threaded Java programming examples, this is the graphics version. Related to thread synchronization and mutual exclusion, critical area to visit, as we
bang
- 利用多线程同步机制模拟银行帐号的存款取款操作-Using multi-thread synchronization mechanism for simulation of bank account deposits of money to operate
Critical
- Lesson16线程同步与异步套接字编程-Lesson16 thread synchronization with asynchronous socket programming
Thread
- 这是理解java线程同步的一个小例子,一般适合大多初学者。-This is the understanding of java thread synchronization in a small example of the general suitable for most beginners.
ProducerConsumer
- 生产者与消费者线程同步问题的一个模拟,帮助更深理解。采用JAVA面向对象的实现-Producers and consumers, thread synchronization issues in a simulated, helping a deeper understanding. Used to achieve the object-oriented JAVA
multithread2008
- Java的多线程,程序、进程和线程的概念,实现多线程的两种方式,线程同步的原理,线程的死锁,运用wait和notify来实现producer - consumer关系,线程终止的两种情况。-Java multi-threading, procedures, process and thread the concept of the realization of multi-threaded in two ways, the principle of simultaneous threads, t
javasocket
- 1. socket通信:有客户端和服务端的socket代码。 2. 多线程:客户端和服务端各用一线程发送信息;服务端另有一监听线程,用于把超时的信息删除。 这里应用到了同步,使两个线程可以操作同一个map。 -1. Socket communications: There are client and service side of the socket code. 2. Multi-threading: client and server uses one threa
JAVAxiancheng
- 线程族群、线程同步、线程控制、线程合作的源程序-Thread group, thread synchronization, thread control, thread-source cooperation
JuristsEatingProblem(graphicsversion)
- 学家就餐问题(图形版),此程序演示了Java多线程同步的概念,形象生动!-Jurists eating problem (graphics version), the Java program to demonstrate the concept of simultaneous multithreading, a vivid image!
thread
- java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<
java_threaddemo
- 哲学家就餐是一个经典的Java多线程编程的实例,这是图形版。涉及到线程同步与互斥,临界区访问问题以及避免死锁的方法。 -Dining Philosophers is a classic example of Java multi-threaded programming, it is graphic version. Related to thread synchronization and mutual exclusion, critical access issues and ways to
多线程代码和敏捷流程讲述
- 主要是项目的敏捷开发和多线程代码,线程并发设计线程同步,敏捷开发是项目的主流过程,是一个软件系统维护和管理的基本方法(Multi-threaded and agile development)
线程-Java
- 实现多线程 互斥锁 线程池 线程同步利用Java实现(Achieve multi-threaded mutex sewing thread pool)