摘要:
http://junit.org/上详细介绍了Junit。JUnit is a simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing fra... 阅读全文
摘要:
Thread和RunnableRunnable接口可以避免继承自Thread类的单继承的局限性。Runnable的代码可以被多个线程(Thread的实例)所共享,适合于多个线程共享资源(其实就是持有同一个runnable实例)的情况。以火车站买票为例,分别以继承Thread类和实现Runnable接... 阅读全文