請輸入想查詢的單字或片語
    Footer
    Download on the App StoreGet it on Google Play

    關於

    • 認識 VoiceTube
    • 學習服務介紹
    • 加入我們
    • 常見問題
    • 熱門搜尋主題
    • 企業英文培訓
    • 社群推廣分潤計畫

    服務總覽

    • 口說挑戰
    • 單字單句本
    • Hero 智能學習
    • Tutor 真人家教
    • Vclass 名師課程
    • Campus 教育版
    • 字典查詢
    • 匯入影片並生成字幕
    • 部落格

    精選頻道

    影片分級

    • A1 初級
    • A2 初級
    • B1 中級
    • B2 中高級
    • C1 高級
    • C2 高級

    隱私權˙條款˙
    ©2026 VoiceTube Corporation. All rights reserved

    integer

    US /ˈɪntɪdʒɚ/

    ・

    UK /ˈɪntɪdʒə(r)/

    B2 中高級
    n. (c.)可數名詞整數
    Two is an integer, but 2.5 is not

    影片字幕

    0.4 資料結構與演算法:選擇排序法程式碼! (0.4 Data Structures & Algorithms: Selection Sort Code)

    02:400.4 資料結構與演算法:選擇排序法程式碼! (0.4 Data Structures & Algorithms: Selection Sort Code)
    • So I'm going to create an integer variable that represents that location.

      好的,我們需要某種方法來跟蹤最小項目的位置。

    • So I'm going to create an integer variable that represents that location.

      好的,我們需要某種方法來跟蹤最小項目的位置。

    B2 中高級

    0.5 資料結構與演算法:清單式選擇排序法! (0.5 Data Structures & Algorithms: List-Based Selection Sort)

    10:190.5 資料結構與演算法:清單式選擇排序法! (0.5 Data Structures & Algorithms: List-Based Selection Sort)
    • Basically, what this is doing is it will give me a random integer between zero and the maximum possible integer value.

      基本上,這樣做的目的是給我一個介於 0 和最大可能整數值之間的隨機整數。

    • Basically, what this is doing is it will give me a random integer between 0 and the maximum possible integer value.

      是以,我要在循環中使用我的原始測試值。

    A2 初級

    攝氏華氏大亂鬥?! (What the Fahrenheit?!)

    05:24攝氏華氏大亂鬥?! (What the Fahrenheit?!)
    • I mean, why does water freeze at 32 degrees, why that integer, and what exactly does zero represent?

      華氏溫度 似乎有點隨意。

    • Why that integer and what exactly does 0 represent?

      為什麼是這個整數,而 0 又代表什麼?

    B1 中級

    C語言的Hello World!程式設計1:24HourAnswers教學 (Hello World in C: Computer Programming 1: 24HourAnswers Tutorials)

    06:11C語言的Hello World!程式設計1:24HourAnswers教學 (Hello World in C: Computer Programming 1: 24HourAnswers Tutorials)
    • and it returns an integer, signified by the word int here.

      程式由好幾個程序組成,這些程序會依照一定的流程執行

    • and returns an integer - signified by int. Don't worry if you don't understand these terms yet.

      main函式會傳回一個整數(在C語言中,int表示整數型別)。現在你還不必為了不知道這些術語是什麼意思而擔心

    B1 中級

    C++ 教學 - 06 - 運算子! (C++ Tutorial - 06 - Operators)

    03:00C++ 教學 - 06 - 運算子! (C++ Tutorial - 06 - Operators)
    • This is because it operates on two integer values and will therefore truncate the result and return an integer.

      請注意這裏,除的結果是錯的。這是因為

    • two integer values and will therefore trunctate the result and return an integer. To get the

      兩個整數相除所得的商的小數部份會被無條件捨去。為了得到

    B1 中級

    在 Arduino IDE 中新增檔案! (Adding a file in Arduino IDE)

    10:49在 Arduino IDE 中新增檔案! (Adding a file in Arduino IDE)
    • This error typically occurs when the compiler does not recognize the uint8t type, which is supposed to represent an unsigned 8-bit integer.

      這種錯誤通常發生在編譯器無法識別 uint8t 類型時,該類型本應表示無符號 8 位整數。

    • This error typically occurs when the compiler does not recognize the unit 8t type, which is supposed to represent an unsigned 8-bit integer.

      然後,在這裡對代碼進行了清理。

    B1 中級

    C++ 中的向量 (Vectors) 介紹! (Vectors in C++)

    16:01C++ 中的向量 (Vectors) 介紹! (Vectors in C++)
    • Okay so we got past all of our errors, it did provide a warning here, or output a warning, it says comparison between signed and unsigned integer expression, so this is related to the size operation here, so the size operation isn't actually returning an int value, but it's trying to compare it to an int value, so again you could do a cast operation there and cast that to an int, but I'm going to just ignore that for now, it's not really important that we change that.

      好了,我們已經克服了所有錯誤,但這裡確實提供了一個警告,或者說輸出了一個警告,上面寫著有符號和無符號整數表達式之間的比較,所以這與這裡的大小操作有關,所以大小操作實際上並沒有返回一個 int 值,但它試圖將其與一個 int 值進行比較,所以你也可以在這裡進行一個轉換操作,將其轉換為一個 int 值,但我現在要忽略這一點,我們改變這一點其實並不重要。

    • It says comparison between signed and unsigned integer expression.
    B1 中級

    C++ 的 vector 陣列型別是什麼? (The Vector Type in C++)

    06:33C++ 的 vector 陣列型別是什麼? (The Vector Type in C++)
    • We specify the keyword vector and within angle brackets, we specify the type that it is going to hold which is integer for this example and this is the name of the vector that is myVec.

      我們指定關鍵字 vector(向量),並在角括號內指定它要保存的類型,本例中為整型,這就是向量的名稱 myVec。

    • It is going to be a collection of the integer type objects.

      它將是一個整數類型對象的集合。

    B2 中高級

    C++程式設計入門教學! (Introduction to C++ Programming)

    10:32C++程式設計入門教學! (Introduction to C++ Programming)
    • So, in this example, let I be an integer variable whose value is equal to six.

      是以,在這個例子中,假設 I 是一個整數變量,其值等於 6。

    • Now, again, if you are new to programming, you may not understand the meaning of this term variable, and what do we mean by I is an integer and all that.

      再說一遍,如果你是編程新手,你可能不理解變量這個術語的含義,也不知道 I 是整數是什麼意思。

    A2 初級

    超簡單C++程式教學!從零開始學寫程式! (Writing a Simple C++ Program)

    10:59超簡單C++程式教學!從零開始學寫程式! (Writing a Simple C++ Program)
    • So, this int that is written here, which stands for integer, is the return type.

      是以,這裡寫的 int 代表整數,是返回類型。

    • So, here it is written int, which stands for integer.

      是以,這裡寫成 int,代表整數。

    A2 初級