タグ

ブックマーク / qiita.com/shyu (4)

  • 処理時間の計測 - Qiita

    Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article?

    処理時間の計測 - Qiita
    kasumani
    kasumani 2014/06/23
    処理時間の計測 2 ストック 0 コメント この投稿をストックする javaで処理時間を計測するにはSystemクラスのcurrentTimeMillisメソッドを使うのが一番簡単みたい?currentTimeMillisは現在の時間を所得するメソッドなので、計測した T
  • 主要な型まとめ - Qiita

    型    ビット数(バイト数) 範囲 byte 8 (1) (-27, 27-1) = (-128, 127) int 32 (4) (-231, 231-1) char 16 (2) Unicode の一文字 float 32 (4) IEEE 754 規格の 32 ビット浮動小数点数 double 64 (8) IEEE 754 規格の 64 ビット浮動小数点数 Register as a new user and use Qiita more conveniently You get articles that match your needsYou can efficiently read back useful informationYou can use dark themeWhat you can do with signing up

    主要な型まとめ - Qiita
    kasumani
    kasumani 2014/06/19
    主要な型まとめ 型    ビット数(バイト数) 範囲 byte 8 (1) (-27, 27-1) = (-128, 127) int 32 (4) (-231, 231-1) char 16 (2) Unicode の一文字 float 32 (4) IEEE 754 規格の 32 ビット浮動小数点数 double 64 (8) IEEE 754 規格の 64 ビット浮動小数点数 Tags: i
  • 2進数、8進数、16進数それぞれの変換 - Qiita

    String Integer.toBinaryString(int i) 数値iを2進数表記の文字列で返す String Integer.toOctalString(int i) 数値iを8進数表記の文字列で返す String Integer.toHexString(int i) 数値iを16進数表記の文字列で返す Register as a new user and use Qiita more conveniently You get articles that match your needsYou can efficiently read back useful informationYou can use dark themeWhat you can do with signing up

    2進数、8進数、16進数それぞれの変換 - Qiita
    kasumani
    kasumani 2014/06/19
    2進数、8進数、16進数それぞれの変換 String Integer.toBinaryString(int i) 数値iを2進数表記の文字列で返す String Integer.toOctalString(int i) 数値iを8進数表記の文字列で返す String Integer.toHexString(int i) 数値iを16進数表記の文字列で返す
  • 浮動小数点数 - Qiita

    float 32ビット単精度浮動小数点数 double 64ビット倍精度浮動小数点数 単精度浮動小数点数は 負の値は -3.4028235E+38 ~ -1.401298E-45、 正の値は 1.401298E-45 ~ 3.4028235E+38 の範囲の値をとる。 倍精度浮動小数点数は 負の値は -1.79769313486231570E+308 ~ -4.94065645841246544E-324、 正の値は 4.94065645841246544E-324 ~ 1.79769313486231570E+308 の範囲の値をとる。 Register as a new user and use Qiita more conveniently You get articles that match your needsYou can efficiently read back usef

    浮動小数点数 - Qiita
    kasumani
    kasumani 2014/06/19
    浮動小数点数 float 32ビット単精度浮動小数点数 double 64ビット倍精度浮動小数点数 単精度浮動小数点数は 負の値は -3.4028235E+38 ~ -1.401298E-45、 正の値は 1.401298E-45 ~ 3.4028235E+38 の範囲の値をとる。 倍精度浮動小数点数は 負の
  • 1