主题:哲学家吃通心粉 : 锁定同步 « 线程 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 线程 » 锁定同步屏幕截图 
主题:哲学家吃通心粉
 
/* From http://java.sun.com/docs/books/tutorial/index.html */
/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */
import java.awt.Color;
import java.awt.Dimension;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.net.URL;

import javax.swing.BorderFactory;
import javax.swing.ImageIcon;
import javax.swing.JButton;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JSlider;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;

public class DiningPhilosophers extends javax.swing.JApplet implements
    ActionListener, ChangeListener {

  private JButton stopStartButton = new JButton("start");

  // delays can go from 0 to 10,000 milliseconds, initial value is 500
  int grabDelay = 500;

  private JSlider grabDelaySlider = new JSlider(JSlider.HORIZONTAL, 01005);

  private JLabel label = new JLabel("  500 milliseconds");

  private JPanel philosopherArea;

  public ImageIcon[] imgs = new ImageIcon[3];

  Chopstick[] chopsticks = new Chopstick[NUMPHILS];

  String[] names = "Arisduktle""Dukrates""Pythagoduke""Duko",
      "Dukimedes" };

  static final int NUMPHILS = 5;

  static final int HUNGRYDUKE = 0;

  static final int RIGHTSPOONDUKE = 1;

  static final int BOTHSPOONSDUKE = 2;

  private int width = 0;

  private int height = 0;

  private double spacing;

  private static final double MARGIN = 10.0f;

  private Philosopher[] philosophers = new Philosopher[NUMPHILS];

  public void init() {

    imgs[HUNGRYDUKEnew ImageIcon(getURL("images/hungryduke.gif"));
    imgs[RIGHTSPOONDUKEnew ImageIcon(
        getURL("images/rightspoonduke.gif"));
    imgs[BOTHSPOONSDUKEnew ImageIcon(
        getURL("images/bothspoonsduke.gif"));

    width = imgs[HUNGRYDUKE].getIconWidth() (int) (MARGIN * 2.0);
    height = imgs[HUNGRYDUKE].getIconHeight() (int) (MARGIN * 2.0);
    spacing = width + MARGIN;

    GridBagLayout gridBag = new GridBagLayout();
    GridBagConstraints c = new GridBagConstraints();

    JPanel contentPane = new JPanel();
    contentPane.setLayout(gridBag);

    philosopherArea = new JPanel(null);
    philosopherArea.setBackground(Color.white);
    Dimension preferredSize = createPhilosophersAndChopsticks();
    philosopherArea.setBorder(BorderFactory.createCompoundBorder(
        BorderFactory.createLoweredBevelBorder(), BorderFactory
            .createEmptyBorder(5555)));
    philosopherArea.setPreferredSize(preferredSize);

    c.fill = GridBagConstraints.BOTH;
    c.weighty = 1.0;
    c.gridwidth = GridBagConstraints.REMAINDER; //end row
    gridBag.setConstraints(philosopherArea, c);
    contentPane.add(philosopherArea);

    c.fill = GridBagConstraints.HORIZONTAL;
    c.weightx = 1.0;
    c.weighty = 0.0;
    gridBag.setConstraints(stopStartButton, c);
    contentPane.add(stopStartButton);

    c.gridwidth = GridBagConstraints.RELATIVE; //don't end row
    c.weightx = 1.0;
    c.weighty = 0.0;
    gridBag.setConstraints(grabDelaySlider, c);
    contentPane.add(grabDelaySlider);

    c.weightx = 0.0;
    c.gridwidth = GridBagConstraints.REMAINDER; //end row
    gridBag.setConstraints(label, c);
    contentPane.add(label);
    contentPane.setBorder(BorderFactory.createEmptyBorder(5555));
    setContentPane(contentPane);

    stopStartButton.addActionListener(this);
    grabDelaySlider.addChangeListener(this);

  }

  public void actionPerformed(ActionEvent e) {
    if (stopStartButton.getText().equals("stop/reset")) {
      stopPhilosophers();
      stopStartButton.setText("start");
    else if (stopStartButton.getText().equals("start")) {
      startPhilosophers();
      stopStartButton.setText("stop/reset");
    }
  }

  public void stateChanged(ChangeEvent e) {
    JSlider source = (JSlidere.getSource();
    grabDelay = source.getValue() 100;
    label.setText(String.valueOf(grabDelay + " milliseconds"));
  }

  public void startPhilosophers() {
    for (int i = 0; i < NUMPHILS; i++)
      philosophers[i].philThread.start();
  }

  public void stopPhilosophers() {
    for (int i = 0; i < NUMPHILS; i++)
      philosophers[i].philThread.interrupt();
  }

  public Dimension createPhilosophersAndChopsticks() {
    double x, y;
    double radius = 80.0;
    double centerAdj = 85.0;
    double radians;

    Dimension preferredSize = new Dimension(00);

    /*
     * for a straight line y = MARGIN;
     */
    for (int i = 0; i < NUMPHILS; i++)
      chopsticks[inew Chopstick();

    for (int i = 0; i < NUMPHILS; i++) {
      /*
       * for a straight line x = i * spacing;
       */
      radians = i * (2.0 * Math.PI / (doubleNUMPHILS);
      x = Math.sin(radians* radius + centerAdj;
      y = Math.cos(radians* radius + centerAdj;
      philosophers[inew Philosopher(this, i, imgs[HUNGRYDUKE]);
      philosophers[i].setBounds((intx, (inty, width, height);
      philosopherArea.add(philosophers[i]);
      if ((intx > preferredSize.width)
        preferredSize.width = (intx;
      if ((inty > preferredSize.height)
        preferredSize.height = (inty;
    }

    preferredSize.width += width;
    preferredSize.height += height;
    return preferredSize;
  }

  protected URL getURL(String filename) {
    URL codeBase = getCodeBase();
    URL url = null;

    try {
      url = new URL(codeBase, filename);
    catch (java.net.MalformedURLException e) {
      System.out.println("Couldn't create image: "
          "badly specified URL");
      return null;
    }

    return url;
  }
}

/*
 * This class requires no changes from the 1.0 version. It's kept here so the
 * rest of the example can compile.
 */

class Philosopher extends JLabel implements Runnable {
  private Chopstick leftStick, rightStick;

  private boolean sated;

  private DiningPhilosophers parent;

  private int position;

  Thread philThread = null;

  public Philosopher(DiningPhilosophers parent, int position, ImageIcon img) {
    super(parent.names[position], img, JLabel.CENTER);

    this.parent = parent;
    this.position = position;

    setVerticalTextPosition(JLabel.BOTTOM);
    setHorizontalTextPosition(JLabel.CENTER);

    // identify the chopsticks to my right and left
    this.rightStick = parent.chopsticks[position];
    if (position == 0) {
      this.leftStick = parent.chopsticks[parent.NUMPHILS - 1];
    else {
      this.leftStick = parent.chopsticks[position - 1];
    }

    // I'm hungry
    this.sated = false;
    philThread = new Thread(this);
  }

  public void run() {
    try {
      while (true) {
        Thread.sleep((int) (Math.random() * parent.grabDelay));
        setText("     ");
        rightStick.grab();
        setIcon(parent.imgs[parent.RIGHTSPOONDUKE]);

        Thread.sleep((int) (Math.random() * parent.grabDelay));
        leftStick.grab();
        setIcon(parent.imgs[parent.BOTHSPOONSDUKE]);

        Thread.sleep((int) (Math.random() * parent.grabDelay));
        rightStick.release();
        leftStick.release();
        setIcon(parent.imgs[parent.HUNGRYDUKE]);
        setText("Mmmm!");
        sated = true;

        Thread.sleep((int) (Math.random() * parent.grabDelay * 4));
        sated = false;
      }
    catch (java.lang.InterruptedException e) {
    }
    leftStick.releaseIfMine();
    rightStick.releaseIfMine();
    setIcon(parent.imgs[parent.HUNGRYDUKE]);
    setText(parent.names[position]);
    sated = false;
    philThread = new Thread(this);
  }
}

class Chopstick {
  Thread holder = null;

  public synchronized void grab() throws InterruptedException {
    while (holder != null)
      wait();
    holder = Thread.currentThread();
  }

  public synchronized void release() {
    holder = null;
    notify();
  }

  public synchronized void releaseIfMine() {
    if (holder == Thread.currentThread())
      holder = null;
    notify();
  }
}

           
         
  
Related examples in the same category
1. 同步另一个对象同步另一个对象
2. 线程是操作不安全线程是操作不安全
3. 同步块,而非整个方法同步块,而非整个方法
4. 布尔锁布尔锁
5. 静态同步块静态同步块
6. 线程通知线程通知
7. 线程死锁线程死锁
8. 同步方法同步方法
9. 线程加入线程加入
10. 静态同步静态同步
11. 没有同步没有同步
12. 线程同步线程同步
13. 同步块演示同步块演示
14. Interruptible Synchronized Block Interruptible Synchronized Block
15. 信令信令
16. 简单对象先进先出简单对象先进先出
17. 对象先进先出对象先进先出
18. 字节FIFO字节FIFO
19. 线程同步
20. 守护进程锁
21. 判断当前线程正在举行同步锁定
22. 处理并行读/写:使用同步锁定数据
23. 锁的读取和写入
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.