2

如果我在主线程中声明了一个全局变量,假设我从主线程中运行了一个新线程,那么新线程可以访问主线程中的全局变量吗?

“msg”字符串是我访问的变量

/* A simple banner applet.

   This applet creates a thread that scrolls
   the message contained in msg right to left
   across the applet's window.
*/
import java.awt.*;
import java.applet.*;
/*
<applet code="SimpleBanner" width=300 height=50>
</applet>
*/

public class AppletSkel extends Applet implements Runnable {
  String msg = " A Simple Moving Banner.";  //<<-----------------VARIABLE TO ACCESS
  Thread t = null;
  int state;
  boolean stopFlag;

  // Set colors and initialize thread.
  public void init() {
    setBackground(Color.cyan);
    setForeground(Color.red);
  }

  // Start thread
  public void start() {
    t = new Thread(this);
    stopFlag = false;
    t.start();
  }

  // Entry point for the thread that runs the banner.
  public void run() {
    char ch;

    // Display banner 
    for( ; ; ) {
      try {
        repaint();
        Thread.sleep(250);
        ch = msg.charAt(0);
        msg = msg.substring(1, msg.length());
        msg += ch;
        if(stopFlag)
          break;
      } catch(InterruptedException e) {}
    }
  }

  // Pause the banner.
  public void stop() {
    stopFlag = true;
    t = null;
  }

  // Display the banner.
  public void paint(Graphics g) {
    g.drawString(msg, 50, 30);
    g.drawString(msg, 80, 40);
  }
}
4

1 回答 1

5

对多个线程可见的变量通常很棘手。然而,字符串是不可变的,因此简化了情况。

它是可见的,但不能保证修改后的普通值可用于其他线程。你应该做它volatile,这样它就不会在本地缓存线程。在分配之前使用局部变量来构建新字符串msg

如果你打算stopFlag从其他线程修改,它也应该是volatile.

于 2013-07-25T18:02:11.440 回答