public void Myclass extends JFrame implements Runnable;
比如这个Myclass类,用它可以实例化一个线程吗?
可以。创建并启动线程的方式如下:
Thread thread = new Thread(this);
thread.start();