パッケージ library.core.io

クラス MyScanner

java.lang.Object
library.core.io.MyScanner
すべての実装されたインタフェース:
AutoCloseable

public final class MyScanner extends Object implements AutoCloseable
入力クラス Scannerより速い
  • コンストラクタの概要

    コンストラクタ
    修飾子
    コンストラクタ
    説明
    protected
    コンストラクタ
  • メソッドの概要

    修飾子とタイプ
    メソッド
    説明
    final void
    InputStreamを閉じる
    protected final String
    [maybe_unused] 一行全部を入力する
    protected final BigInteger
    nb()
    nextBigInteger 多倍長整数を入力する
    protected final char
    nc()
    nextChar(Scannerにはない) char型を入力する
    protected final double
    nd()
    nextDouble double型を入力する
    protected final int
    ni()
    nextInt int型を入力する
    protected final long
    nl()
    nextLong long型を入力する
    protected final String
    ns()
    nextString(Scannerで云うnext) 文字列を入力する
    protected final char[]
    nt()
    受け取った文字列をtoCharArrayにして返す
    protected final FloatPair
    pf()
    FloatPair型を入力する
    protected final IntPair
    pi()
    IntPair型を入力する

    クラスから継承されたメソッド java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • コンストラクタの詳細

    • MyScanner

      protected MyScanner(InputStream is)
      コンストラクタ
      パラメータ:
      is - 標準入力(System.in)を入れる
  • メソッドの詳細

    • ni

      protected final int ni()
      nextInt int型を入力する
    • nl

      protected final long nl()
      nextLong long型を入力する
    • nd

      protected final double nd()
      nextDouble double型を入力する
    • nc

      protected final char nc()
      nextChar(Scannerにはない) char型を入力する
    • ns

      protected final String ns()
      nextString(Scannerで云うnext) 文字列を入力する
    • nt

      protected final char[] nt()
      受け取った文字列をtoCharArrayにして返す
    • nb

      protected final BigInteger nb()
      nextBigInteger 多倍長整数を入力する
    • pi

      protected final IntPair pi()
      IntPair型を入力する
      関連項目:
    • pf

      protected final FloatPair pf()
      FloatPair型を入力する
      関連項目:
    • line

      protected final String line()
      [maybe_unused] 一行全部を入力する
    • close

      public final void close()
      InputStreamを閉じる
      定義:
      close インタフェース内 AutoCloseable