摘要:
用Runnable创建线程 之前说过可以通过继承Thread来创建线程,本文描述另一种线程创建方式,即使用Runnable接口。 以下代码演示如何使用Runnable接口: package com.cxf.multithread.runnable; public class TestForRunna 阅读全文
摘要:
创建线程 以下代码创建一个线程并运行: package com.cxf.multithread.create; public class TestForCreate { public static void main(String[] args) { new MyThread().start(); 阅读全文
摘要:
在界面添加文本框 以下代码实现用gui添加文本框: package com.cxf.gui.swing.lastj; import javax.swing.*; import java.awt.*; public class TestForJtext { public static void mai 阅读全文