Threads and Multithreading. Multiprocessing Modern operating systems are multiprocessing Appear to do more than one thing at a time Three general approaches:

Slides:



Advertisements
Similar presentations
Ade Azurat, Advanced Programming 2004 (Based on LYS Stefanus’s slides) Advanced Programming 2004, Based on LYS Stefanus’s slides Slide 2.1 Multithreading.
Advertisements

1 CSC321 §2 Concurrent Programming Abstraction & Java Threads Section 2 Concurrent Programming Abstraction & Java Threads.
Threads Daniel Bennett, Jeffrey Dovalovsky, Dominic Gates.
Thread Control methods The thread class contains the methods for controlling threads Thread() create default thread Thread(target: runnable ) creates new.
Liang, Introduction to Java Programming, Sixth Edition, (c) 2007 Pearson Education, Inc. All rights reserved L19 (Chapter 24) Multithreading.
Cosc 5/4730 Game Design. A short game design primer. A game or animation is built on an animation loop. – Instance variables of “objects” are updated.
(c) 2006 E.S.Boese All Rights Reserved. Threads and Timers Chapter 19 - Student.
CSE S. Tanimoto Java Threads 1 Java Threads (Outline) Motivation The class Thread Example program: ThreadRace The Runnable interface Example: Clock.
CS220 Software Development Lecture: Multi-threading A. O’Riordan, 2009.
22-Jun-15 Threads and Multithreading. 2 Multiprocessing Modern operating systems are multiprocessing Appear to do more than one thing at a time Three.
26-Jun-15 Threads and Turns. Thread review There are two ways to create a Thread object.. Extend Thread and supply a run method: class MyThread extends.
Slides prepared by Rose Williams, Binghamton University ICS201 Lectures 18 : Threads King Fahd University of Petroleum & Minerals College of Computer Science.
29-Jun-15 Threads and Multithreading. 2 Multiprocessing Modern operating systems are multiprocessing Appear to do more than one thing at a time Three.
Multithreading in Java Nelson Padua-Perez Chau-Wen Tseng Department of Computer Science University of Maryland, College Park.
Threads II. Review A thread is a single flow of control through a program Java is multithreaded—several threads may be executing “simultaneously” If you.
50.003: Elements of Software Construction Week 5 Basics of Threads.
Java: Animation Chris North cs3724: HCI. Animation? Changing graphics over time Examples: cartoons Clippy, agents/assistants Hour glass Save dohicky Progress.
Parallel Processing (CS526) Spring 2012(Week 8).  Thread Status.  Synchronization in Shared Memory Programming(Java threads ) ◦ Locks ◦ Barriars.
8-Oct-15 Threads and Multithreading. 2 Thread s A Thread is a single flow of control When you step through a program, you are following a Thread A Thread.
Java Programming, Second Edition Chapter Seventeen Multithreading and Animation.
Lecture 5 : JAVA Thread Programming Courtesy : MIT Prof. Amarasinghe and Dr. Rabbah’s course note.
Multi-Threaded Application CSNB534 Asma Shakil. Overview Software applications employ a strategy called multi- threaded programming to split tasks into.
Quick overview of threads in Java Babak Esfandiari (extracted from Qusay Mahmoud’s slides)
REVIEW On Friday we explored Client-Server Applications with Sockets. Servers must create a ServerSocket object on a specific Port #. They then can wait.
Java Threads Representation and Management of Data on the Internet.
Dr. R R DOCSIT, Dr BAMU. Basic Java : Multi Threading 2 Objectives of This Session State what is Multithreading. Describe the life cycle of Thread.
111 © 2002, Cisco Systems, Inc. All rights reserved.
Java Threads. What is a Thread? A thread can be loosely defined as a separate stream of execution that takes place simultaneously with and independently.
1 Web Based Programming Section 8 James King 12 August 2003.
Threading Eriq Muhammad Adams J
Concurrent Programming and Threads Threads Blocking a User Interface.
Multithreading in Java Sameer Singh Chauhan Lecturer, I. T. Dept., SVIT, Vasad.
OPERATING SYSTEMS Frans Sanen.  Recap of threads in Java  Learn to think about synchronization problems in Java  Solve synchronization problems in.
Introduction to Threads Session 01 Java Simplified / Session 14 / 2 of 28 Objectives Define a thread Define multithreading List benefits of multithreading.
Advanced Programming 2004, based on LY Stefanus’s slides slide 8.1 Multithreading : Thread Scheduling ThreadGroup.
Multithreading in JAVA
Li Tak Sing COMPS311F. Threads A thread is a single sequential flow of control within a program. Many programming languages only allow you to write programs.
15.1 Threads and Multi- threading Understanding threads and multi-threading In general, modern computers perform one task at a time It is often.
1 CSCD 330 Network Programming Some Material in these slides from J.F Kurose and K.W. Ross All material copyright Lecture 9 Client-Server Programming.
Concurrent Computing CSCI 201L Jeffrey Miller, Ph.D. HTTP :// WWW - SCF. USC. EDU /~ CSCI 201 USC CSCI 201L.
Multi-Threading in Java
Threads in Java Threads Introduction: After completing this chapter, you will be able to code your own thread, control them efficiently without.
Multithreading & Synchronized Algoritma Pemrograman 3 Sistem Komputer – S1 Universitas Gunadarma 1.
Java Applets Adding Animation. Import Files You still need to include the same files: –import java.applet.*; –import java.awt.*;
Chapter 13: Multithreading The Thread class The Thread class The Runnable Interface The Runnable Interface Thread States Thread States Thread Priority.
CSC CSC 143 Threads. CSC Introducing Threads  A thread is a flow of control within a program  A piece of code that runs on its own. The.
MT311 Java Application Development and Programming Languages Li Tak Sing ( 李德成 )
Today Threading, Cont. Multi-core processing. Java Never Ends! Winter 2016CMPE212 - Prof. McLeod1.
Java Thread Programming
Multithreading / Concurrency
Java Multithreading.
Threads and Multithreading
More About Threads.
Chapter 19 Java Never Ends
Threads and Multithreading
Multithreading.
Threads and Multithreading
Multithreading 2 Lec 24.
Multithreading.
Multithreaded Programming
Threads and Multithreading
Threads and Multithreading
Threads and Multithreading
Threads and Multithreading
Threads and Multithreading
Multithreading in java.
Threads and Multithreading
Threads and Multithreading
Threads.
Java Chapter 3 (Estifanos Tilahun Mihret--Tech with Estif)
Presentation transcript:

Threads and Multithreading

Multiprocessing Modern operating systems are multiprocessing Appear to do more than one thing at a time Three general approaches: –Cooperative multiprocessing –Preemptive multiprocessing –Really having multiple processors

Multithreading Multithreading programs appear to do more than one thing at a time Same ideas as multiprocessing, but within a single program More efficient than multiprocessing Java tries to hide the underlying multiprocessing implementation

Why multithreading? Allows you to do more than one thing at once –Play music on your computer’s CD player, –Download several files in the background, –while you are writing a letter Multithreading is essential for animation –One thread does the animation –Another thread responds to user inputs

Threads A Thread is a single flow of control Your previous programs all had one Thread A Thread is an Object you can create and control

Sleeping Every program uses at least one Thread Thread.sleep (int milliseconds); try { Thread.sleep (1000); } catch (InterruptedException e) { } sleep only works for the current Thread

States of a Thread A Thread can be in one of four states: –Ready: all set to run –Running: actually doing something –Waiting, or blocked: needs something –Dead: will never do anything again State names vary across textbooks You have some control, but the Java scheduler has more

State transitions

Two ways of creating Threads You can extend the Thread class: –class Animation extends Thread {…} –Limiting, since you can only extend one thing Or you can implement the Runnable interface: –class Animation implements Runnable {…} –requires public void run ( ) I recommend the second for most programs

Extending Thread class Animation extends Thread {…} Animation anim = new Animation ( ); –A newly created thread is in the Ready state anim.start ( ); start( ) is a request to the scheduler to run the Thread--it may not happen right away The thread should eventually enter the Running state

Implementing Runnable class Animation implements Runnable {…} Animation anim = new Animation ( ); Runnable requires run( ) but not start ( ) Thread myThread = new Thread(anim); myThread.start( ); As always, start( ) is a request to the scheduler to run the Thread--it may not happen right away

Starting a Thread Every thread has a start ( ) method Do not write or override start ( ) You call start ( ) to request a Thread to run The scheduler then (eventually) calls run ( ) You must supply public void run ( ) –This is where you put the code that the Thread is going to run

Extending Thread : summary class Animation extends Thread { public void run( ) { while(okToRun) {... } } Animation anim = new Animation ( ); anim.start ( );

Implementing Runnable : summary class Animation extends Applet implements Runnable { public void run( ) { while(okToRun) {... } } Animation anim = new Animation ( ); Thread myThread = new Thread(anim); myThread.start( );

Things a Thread can do Thread.sleep (milliseconds) yield ( ) Thread me = currentThread ( ); int myPriority = me.getPriority ( ); me.setPriority (NORM_PRIORITY); if (otherThread.isAlive ( )) { … } join (otherThread);

Animation requires two Threads Suppose you set up Buttons and attach Listeners to those buttons... …then your code goes into a loop doing the animation… …who’s listening? –Not this code; it's busy doing the animation sleep ( ) doesn’t help!

How to animate Create your buttons and attach listeners in your first (original) Thread Create a second Thread to run the animation Start the animation The original Thread is free to listen to the buttons

Things a Thread should NOT do The Thread controls its own destiny Deprecated methods –myThread.stop( ) –myThread.suspend( ) –myThread.resume( ) Outside control turned out to be a Bad Idea Don’t do this!

How to control another Thread Don’t use the deprecated methods! Instead, put a request where the other Thread can find it boolean okToRun = true; animation.start ( ); public void run ( ) { while (controller.okToRun ( )) {…}

The End