韋東山ARM架構(gòu)與編程·基于1MX6ULL\/--》ccys1473
總結(jié):
線程不一定立即執(zhí)行,CPU安排調(diào)度
案例:(下載圖片)
案例
/**
?* 練習(xí)Thread,實(shí)現(xiàn)多線程同步下載圖片
?*/
public class Demo2_DownloaderImgCase extends Thread {
? ? private String url;//網(wǎng)絡(luò)圖片地址
? ? private String name;//報錯扥文件名
? ? //有參構(gòu)造
? ? public Demo2_DownloaderImgCase(String url, String name) {
? ? ? ? this.url = url;
? ? ? ? this.name = name;
? ? }
? ? //下載圖片線程的執(zhí)行體
? ? @Override
? ? public void run() {
? ? ? ? WebDownloader webDownloader = new WebDownloader();
? ? ? ? webDownloader.downloader(url, name);
? ? ? ? System.out.println("下載了文件名為:" + name);
? ? }
? ? public static void main(String[] args) {
? ? ? ? Demo2_DownloaderImgCase t = new Demo2_DownloaderImgCase("https://img-home.csdnimg.cn/images/20201124032511.png", "1.png");
? ? ? ? Demo2_DownloaderImgCase t1 = new Demo2_DownloaderImgCase("https://img-home.csdnimg.cn/images/20201124032511.png", "2.png");
? ? ? ? Demo2_DownloaderImgCase t2 = new Demo2_DownloaderImgCase("https://img-home.csdnimg.cn/images/20201124032511.png", "3.png");
? ? ? ? t.start();
? ? ? ? t1.start();
? ? ? ? t2.start();
? ? }
}
//下載器
class WebDownloader {
? ? //下載方法
? ? public void downloader(String url, String name) {
? ? ? ? try {
? ? ? ? ? ? FileUtils.copyURLToFile(new URL(url), new File(name));
? ? ? ? } catch (IOException e) {
? ? ? ? ? ? e.printStackTrace();
? ? ? ? ? ? System.out.println("IO異常,downloader方法出現(xiàn)問題");
? ? ? ? }
? ? }
}