scanners中文翻譯,scanners是什么意思,scanners發(fā)音、用法及例句
- 內容導航:
- 1、scanners
- 2、java中怎么用scanner?
1、scanners
scanners發(fā)音
英: 美:
scanners中文意思翻譯
常用釋義:掃描器
n.[電子]掃描器(scanner的復數)
scanners常用詞組:
laser scanner───激光掃描儀
ct scanner───電腦斷層掃描機(等于CAT scanner)
optical scanner───光掃描器
scanners雙語(yǔ)使用場(chǎng)景
1、This attack can be fairly easily performed with any one of a number of port scanners available freely on the Internet.───只要具有可從Internet上免費獲得的眾多端口掃描器之一,任何人都可以輕松實(shí)現這種攻擊。
2、East is East and West is West, and the difference between them is starting to turn up even on brain scanners.───東方是東方,西方是西方,他們之間的差異甚至在大腦上描儀上開(kāi)始凸顯。
3、What will the next scanners look like?───這設備會(huì )是什么樣子?
4、Optical scanners ensure that imperfections in the cloth are located and removed.───光電掃描器能確保找出并去除布料上的瑕疵。
5、We sell printers and scanners, and all-in-ones that combine the two.───我們出售打印機、掃描儀,以及打印掃描二合一設備。
6、The most practical home scanners used to be hand-held devices that the user could slowly track across the desired image, strip by strip.───最實(shí)際的家庭掃描儀使用的是手持設備,用戶(hù)可以慢慢的軌道所需的圖像上,由條帶。
7、If that works, it will just be a question of adding more scanners and computers to expose the truth about East Germany's dark past.───如果真的有效,那么揭露東德黑暗過(guò)去的真相就只是增加更多的掃描儀和計算機的問(wèn)題了。
8、"In Detroit they had two of the body scanners, which they were sending most people through, but other than that it was the same, " she said.───“在底特律機場(chǎng)警衛給乘客們做了兩次身體掃描,他們讓絕大部分人通過(guò)了檢查,而其它部分的檢查與往常無(wú)異”她說(shuō)道。
9、Depending upon the speed of your anti-virus and anti-malware scanners, you might be able to schedule them on the same day or night.───根據你的反病毒和反惡意程序掃描的速度,你也許可以把它們安排在同一天或同一晚上。
scanners相似詞語(yǔ)短語(yǔ)
1、contex large format scanners───contex大幅面掃描儀
2、whistler scanners───惠斯勒掃描儀
3、printers and scanners───打印機和掃描儀
2、java中怎么用scanner?
掃描控制臺輸入
當通過(guò)new Scanner(System.in)創(chuàng )建一個(gè)Scanner,控制臺會(huì )一直等待輸入,直到敲回車(chē)鍵結束,把所輸入的內容傳給Scanner,作為掃描對象。如果要獲取輸入的內容,則只需要調用Scanner的nextLine()方法即可。
/**
* 掃描控制臺輸入
*
* @author leizhimin 2009-7-24 11:24:47
*/
public class TestScanner {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("請輸入字符串:");
while (true) {
String line = s.nextLine();
if (line.equals("exit")) break;
System.out.println(">>>" + line);
}
}
}
請輸入字符串:
234
>>>234
wer
>>>wer
bye
>>>bye
exit
Process finished with exit code 0
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。