comparator中文翻譯,comparator是什么意思,comparator發(fā)音、用法及例句
- 內容導航:
- 1、comparator
- 2、java中comparator 接口怎么比較字符串
1、comparator
comparator發(fā)音
英: 美:
comparator中文意思翻譯
常見(jiàn)釋義:
n.[儀]比較儀;比測儀
comparator雙語(yǔ)使用場(chǎng)景
1、If the comparator is used for sorting, that can mean the list isn't sorted correctly in the end.───如果使用這個(gè)比較器來(lái)排序,那么意味著(zhù)最終列表沒(méi)有被正確排序。
2、A frequency comparator compares the frequency of a reference clock with that of an output clock and outputs a frequency comparison signal.───頻率比較器比較基準時(shí)鐘和輸出時(shí)鐘的頻率,并輸出頻率比較信號。
3、Sorting with a comparator is one option when working with an enumerator, searching with a filter is the other.───使用比較器進(jìn)行排序是使用枚舉器時(shí)的一種選擇,另外一種選擇是使用過(guò)濾器進(jìn)行搜索。
4、"Almost any other Western democracy would be a more useful comparator for us, " says one.───其中一人說(shuō)“幾乎其他任何西方民主國在對比方面對我們來(lái)說(shuō)都比美國有用?!?/p>
5、The comparator circuit may develop offsets, causing it to trigger early or late.───比較器電路也許會(huì )出現偏移量,導致觸發(fā)時(shí)機的提前或是延遲。
6、In snooze mode, the output voltage is sampled at a rate up to 2 ms and is applied to the power-good comparator.───在睡眠模式下,輸出電壓的取樣率高達2毫秒,是適用于電源良好比較器。
7、As an editorialist noted, the study did not include an active comparator and was relatively short in duration.───正如一位評論人員所指出,該研究并未包含活性藥物對照組,且持續時(shí)間相對較短。
8、A phase comparator compares the phase of the reference clock with that of the output clock and outputs a phase comparison signal.───相位比較器比較基準時(shí)鐘和輸出時(shí)鐘的相位,并輸出相位比較信號。
9、The second voltage and the reference voltage are respectively inputted to a negative pole and a positive pole of a first comparator.───所述第二電壓和所述參考電壓分別輸入第一比較器的負極和正極;
comparator相似詞語(yǔ)短語(yǔ)
1、comparator minecraft───比較雷艇
2、comparator redstone───紅石比較儀
3、comparator noise───比較器噪聲
4、comparator in logisim───logisim中的比較器
2、java中comparator 接口怎么比較字符串
private class MyComparator implements Comparator
{
@Override
public int compare(Integer o1, Integer o2)
{
if (o1 > o2)
{
return 1;
}
else if (o1 < o2)
{
return -1;
}
else
{
return 0;
}
}
}
這就是java 的Comparator接口
版權聲明: 本站僅提供信息存儲空間服務(wù),旨在傳遞更多信息,不擁有所有權,不承擔相關(guān)法律責任,不代表本網(wǎng)贊同其觀(guān)點(diǎn)和對其真實(shí)性負責。如因作品內容、版權和其它問(wèn)題需要同本網(wǎng)聯(lián)系的,請發(fā)送郵件至 舉報,一經(jīng)查實(shí),本站將立刻刪除。