最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

韋東山ARM架構(gòu)與編程·基于1MX6ULL\/--》ccys1473

2023-07-10 12:26 作者:月i唐三  | 我要投稿

總結(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)問題");

? ? ? ? }

? ? }

}



韋東山ARM架構(gòu)與編程·基于1MX6ULL\/--》ccys1473的評論 (共 條)

分享到微博請遵守國家法律
遂昌县| 梨树县| 洪洞县| 汕尾市| 寿光市| 贡觉县| 和平区| 钟山县| 宣威市| 浮梁县| 东兰县| 缙云县| 图木舒克市| 齐河县| 龙州县| 宝坻区| 凭祥市| 惠安县| 漳浦县| 夹江县| 青川县| 兰州市| 平度市| 稷山县| 广灵县| 阿克苏市| 保靖县| 辽宁省| 河东区| 辽中县| 宁海县| 贵定县| 清丰县| 江城| 新余市| 涡阳县| 普宁市| 马公市| 饶河县| 广昌县| 道孚县|