Footer

    Download on the App StoreGet it on Google Play

    VoiceTube とは

    • VoiceTube について
    • 学習サービス紹介
    • 採用情報
    • よくある質問
    • ホットタグ

    サービス一覧

    • スピーキングチャレンジ
    • 保存
    • VoiceTube Hero
    • 法人向け VoiceTube
    • 単語検索
    • 動画をインポート
    • ブログ

    お勧めチャンネル

    レベル別

    • 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.

      基本的に、これはゼロから可能な最大の整数値の間のランダムな整数を与えてくれる。

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

      そこで、オリジナルのテスト値を使うループを入れることにする。

    A2 初級

    C++のベクター型 (The Vector Type in C++)

    06:33C++のベクター型 (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を指定し、角括弧で囲んで、そのvectorが保持する型(この例ではinteger)を指定する。

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

      整数型オブジェクトのコレクションになる。

    B2 中上級

    Arduino IDEにファイルを 1 つ追加する方法 (Adding a file in Arduino IDE)

    10:49Arduino IDEにファイルを 1 つ追加する方法 (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.

      このエラーは通常、符号なし8ビット整数を表すはずのuint8t型をコンパイラが認識しない場合に発生する。

    • 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 中級

    初心者向けAndroidアプリ開発入門 (How to Make an Android App for Beginners)

    19:18初心者向けAndroidアプリ開発入門 (How to Make an Android App for Beginners)
    • And pick this option where we pass in an integer to bound it.

      そして、整数を渡してバインドするこのオプションを選ぶ。

    • This will give us a random integer from within a certain range.

      これは、ある範囲内のランダムな整数を与えてくれる。

    B1 中級

    MySQL EXPLAIN を使ったクエリ最適化 (Use MySQL EXPLAIN for Query Optimization)

    17:19MySQL EXPLAIN を使ったクエリ最適化 (Use MySQL EXPLAIN for Query Optimization)
    • This table has an autoincrement primary key and two integer values.

      このテーブルはオートインクリメントの主キーと2つの整数値を持つ。

    • Then, we add an index on the first integer value column, alter table, test estimates, and add an index.

      次に、最初の整数値カラムにインデックスを追加し、テーブルを変更し、見積りをテストし、インデックスを追加する。

    B1 中級

    C++のベクトル (Vectors in C++)

    16:01C++のベクトル (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.

      さて、これでエラーはすべて取り除かれましたが、ここで警告が表示されたり、警告が出力されたりしました。符号付き整数式と符号なし整数式の比較と書かれています。

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

    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.

      そこで、この例では、値が6に等しい整数変数をIとする。

    • 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.

      さて、繰り返しになるが、プログラミングを始めたばかりの人は、この変数という言葉の意味がわからないかもしれない。

    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はintegerの略で、戻り値の型である。

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

      つまり、ここではintと書き、これはintegerの略である。

    A2 初級

    C++ポインタ入門:チュートリアル (Introduction to Pointers in C++, Tutorial on Pointers, C++ Pointers)

    11:38C++ポインタ入門:チュートリアル (Introduction to Pointers in C++, Tutorial on Pointers, C++ Pointers)
    • More specifically, we could say that p is an integer pointer, meaning it's capable of holding addresses or memory locations associated with integer values.

      より具体的に言えば、pは整数ポインターであり、整数値に関連するアドレスやメモリー位置を保持することができるということだ。

    • So we can see here that the address associated with x here is the address 0003, and that in fact is the value that's being stored here at this particular memory location associated with p, our integer pointer p.

      つまり、xに関連付けられたアドレスは0003番地であり、この値はp(整数ポインタp)に関連付けられたこの特定のメモリー位置に格納されていることがわかる。

    A2 初級