应该念"sred"大致的中文音为"丝日乌爱得",正确的读音音标如下图。
分开解释:threadripper,线程开膛手/撕裂者之意。
thread[θred],n. 螺纹; 线; 线索; 线状物; vt. 穿成串; 将(针、线等)穿过…; 用…线缝; 给…装入(胶片、狭带、绳子); 。
ripper [ˈrɪpə(r)],n. 撕裂者,裂具; 切书机; 粗齿锯; 剖鱼工; 。
中文谐音:蛇瑞德 绿剖
thread意思是线 、线索、 (互联网留言板上帖子的)系列相关信息、螺纹 、 穿行、曲折穿过、蜿蜒。
thread:
英 [θred] 美 [θrɛd]。
1、(棉、毛、丝等的)线
a robe embroidered with gold thread。
用金线绣的长袍
2、线索;脉络;思绪;思路;贯穿的主线 。
A common thread runs through these discussions.。
这些讨论都贯穿着一条共同的主线。
3、线状物;细细的一条
A thread of light emerged from the keyhole.。
从锁眼里透出一丝光亮。
4、 (互联网留言板上帖子的)系列相关信息,链式消息 。
There are a lot of thread on the internet。
网址上有很多这类的信息。
5、螺纹
The screw threads will be able to get a good grip.。
螺纹能牢牢地咬合卡紧。
6、 穿行;曲折穿过;蜿蜒
Slowly she threaded her way back through the moving mass of bodies...。
她从人流中慢慢地挤了回来。
扩展资料
表示线索的同义词:
一、clue
英 [klu:] 美 [klu] 。
n.线索;提示;(帮助警方破案的)线索;(纵横填字谜、游戏或问题的)提示词语。
The police think the videotape may hold some vital clues to the identity of the killer.。
警方认为那盘录像带可能录有能确认凶手身份的一些重要线索。
二、clew
英 [klu:] 美 [klu:] 。
n.(解决问题的)线索,线团
vt.绕成线球,提示
What was the clew that would set everything straight again? 。
要抓住了什么线索才能把一切弄得井井有条?
级来回分配资源,如果你的每个线程里做的操作都是10分钟一气呵成的,那么意味着资源分配到某个线程后必须做完10分钟才被放开,那你就只能一个个顺序执行了,失去了多线程的意义。
但如果每个线程里的执行是通过循环(while)来操作的,那么就可以在每次循环后将资源让出,给别的线程调用,这就好比,线程A做掉1%,进程出来调给线程B,B在做掉1%,以此来实现N个线程的同时进行。
例如:我先一个简单的多线程例子,一个println字符串的程序。
public class TestThread {。
private String s;。
public void print() {。
new Thread() {。
public void run() {。
while (Thread.currentThread() == this) { //当进程资源分配到该线程对象时执行。
System.out.println(s);//执行自定义操作。
try {
Thread.sleep(10);//休息一下,让出资源。
} catch (InterruptedException e) {。
e.printStackTrace();。
}
}
}
}.start();
}
public static void main(String[] args) {。
//实例化4个不同的对象,同时开始做自己的操作。
TestThread t1 = new TestThread();。
t1.s = "A";
TestThread t2 = new TestThread();。
t2.s = "B";
TestThread t3 = new TestThread();。
t3.s = "C";
TestThread t4 = new TestThread();。
t4.s = "D";
t1.print();
t2.print();
t3.print();
t4.print();
}
打印的结果是:
D 很随机的把资源交给各个线程去操作,感觉上就是你想要的个线程同步执行了,但是最重要的是你的写入读卡器必须要可以用循环一点点执行的,说白了就是要像连续剧一样,中间要有广告,不能像电影一样,一下子到底没停顿。