1

我正在用 Java 实现一个接口,并且想知道为什么这段代码:

package threaddemo;

// Create a new thread...
class NewThread implements Runnable {
      Thread t;
      NewThread(){
        // Create a second, new thread...
        t = new Thread(this, "Demo Thread");
        System.out.println("Child thread: " + t);
        t.start();
      }

    // This is the entry point for the second thread...
    public void run(){
           try {
               for (int i=0; i<5; i++){
                   System.out.println("Child thread: " + i);
                    // Let the thread sleep for a while...
                    Thread.sleep(500);
               }
           } catch (InterruptedException e) {
                   System.out.println("Child interrupted...");
               }
                   System.out.println("Exiting child thread...");
           } }

public class ThreadDemo {

    public static void main(String[] args) {
            // Create a new thread...
            new NewThread(); 
            try {
                for (int i=0; i<5; i++){
                    System.out.println("Main thread: " + i);
                       Thread.sleep(1000);
                }
            } catch (InterruptedException e){
                System.out.println("Main thread itnerrupted...");
            }
            System.out.println("Main thread exiting...");
    } }

在其左侧生成以下警告:

Package Field

当您实现接口时,您是否可以访问包含该接口的包中的类?我的包中还没有其他文件,我也没有进行任何类型的导入,所以我实际上有点困惑为什么可以访问它...

4

1 回答 1

1

从来没有见过那个警告,所以在这里走出去......你有为班级定义的包吗?否则,它可能意味着Thread t-member 具有大多数书籍所说的默认可见性或包私有可见性(这意味着包和类级别的可见性),因为该字段没有可见性修饰符。Java 有 4 种不同的可见性:public、default、protected、private。有关更多信息,请参见此处:控制对类成员的访问

于 2012-08-31T05:09:05.077 回答