ホームページ  >  記事  >  Java  >  Java で発生する問題の概要

Java で発生する問題の概要

巴扎黑
巴扎黑オリジナル
2017-07-24 14:00:551387ブラウズ

1. 奇数かどうかを判断します:

public static boolean isOdd(int i) { return i %2 != 0 ; }

2. 出力: 0.89999999 99999999 (Double 型)

System.out.println(new BigDecimal("2.00").subtract(new BigDecimal("1.10"))); --0.90 を出力する場合は、引用符を追加する必要があります。小数。

System.out.println(new BigDecimal("2.01").subtract(new BigDecimal("1.65"))); -- 出力 0.36

System.out.println(new BigDecimal(2.0) .subtract(new BigDecimal(1.1))); -- 出力 0.899 99999999 99999111 82158029 98747676 61094665 52734375

System.out.printf("%.2fn", 2.0-1.115); --出力: 0. 89

GFinal Long Micros_per_Day = 24 * 60 * 60 * 1000 * 1000;

Final Long Millis_per_DAY = 24 * 60 * 60 * 1000;
System.out.println (24 * 60 * 1000 * 1000 000); : 5006540​​80、int 型として扱われるため、範囲外になります。
System.out.println(24 * 60 * 60 * 1000 ); ---出力: 5

長整数の計算の場合、L: System.out.println(24L * 60 * 60 * 1000 * 1000) ; --- 出力: 86400000 000

System.out.println("H" + "a"); 出力: Ha

System.out.println("H" + 'a'); System.out.println('H' + 'a'); 169

char[] 数値 = {'1 ','2','3'};

System.out.println("a" + 数値); 出力: a[C@c3c749

void java.io.PrintStream.println(String x)

String を出力し、行を終了します。このメソッドは、<code>print を呼び出したかのように動作します。 (String) の次に <code>println() code>.

System.out.println(numbers); 出力: 123<code>print(String) and then <code>println().

 

System.out.println(numbers);  输出:123

void java.io.PrintStream.println(char[] x)     重载的方法

Prints an array of characters and then terminate the line. This method behaves as though it invokes <code>print(char[]) and then <code>println().

 

 

u0022 是双引号的unicode编码。

System.out.println("au0022 + u0022b ".length());   相当于: System.out.println("a" + "b ".length());  , 输出 a2  。(b后面有一个空格)

 

 

System.out.println(Test.class.getName().replace(".","/"));   输出: com/Test 

String java.lang.String.replace(CharSequence target, CharSequence replacement)

Replaces each substring of this string that matches the literal target sequence with the specified literal replacement sequence. The replacement proceeds from the beginning of the string to the end, for example, replacing "aa" with "b" in the string "aaa" will result in "ba" rather than "ab".

 

System.out.println(Test.class.getName().replaceAll(".","/"));   输出:////////              

System.out.println(Test.class.getName().replaceAll("\.","/"));   输出:com/Test

String java.lang.String.replaceAll(String regex, String replacement)

Replaces each substring of this string that matches the given regular expression with the given replacement.

An invocation of this method of the form str.replaceAll(regex, repl) yields exactly the same result as the expression

java.util.regex.Pattern.compile(regex).matcher(str).replaceAllvoid java.io.PrintStream.println(char[] x) オーバーロードされたメソッド 文字の配列を出力してから行を終了します。このメソッドは、<code>print(char[])を呼び出したかのように動作します。 > の次に <code>println() です。

u0022 は二重引用符の Unicode エンコードです。


System.out.println("au0022 + u0022b ".length()); は、 System.out.println("a" + "b ".length()); と同等です。 出力 a2 。 (b の後にスペースがあります)

🎜System.out.println(Test.class.getName().replace(".","/")); 出力: com/Test 🎜🎜String java. lang .String.replace(CharSequence target, CharSequence replace)🎜🎜 リテラル ターゲット シーケンスに一致するこの文字列の各部分文字列を、指定されたリテラル置換シーケンスで置き換えます。たとえば、置換は文字列の先頭から末尾まで行われます。文字列「aaa」の「aa」と「b」は、「ab」ではなく「ba」になります。🎜🎜 🎜🎜System.out.println(Test.class.getName().replaceAll(".",") / ")); 出力: //////// String java.lang.String.replaceAll(String regex, String replace)🎜🎜この文字列の各部分文字列を置き換えます指定された置換を使用して指定された正規表現に一致する文字列。🎜 🎜str🎜🎜.replaceAll (🎜🎜regex🎜🎜,🎜 🎜repl🎜🎜) 形式のこのメソッドを呼び出すと、式🎜
🎜java.util.regex とまったく同じ結果が得られます。 .Pattern.compile (🎜🎜regex🎜🎜).matcher(🎜🎜str🎜🎜).replaceAll(🎜🎜) repl🎜🎜)🎜🎜🎜 🎜🎜StringBuffer word = null;🎜 word = new StringBuffer('P');🎜🎜'P' は int 数値として扱われます。 🎜🎜java.lang.StringBuffer.StringBuffer(int 容量)🎜TConStructs 文字が含まれていない文字列バッファーと指定された初期容量。 .append("a")); 出力 a

  • int j = 0;
  • for(int i = 0; i j = j++; j);

    } 100 行を出力 (j の値は常に 0):

    0

0

...

final int END=Integer.MAX_VALUE ; - 無限ループ。 iが2147483647になったとき、それ以上増えるとマイナスになってしまいます。
}


以上がJava で発生する問題の概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。