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); : 500654080、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
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
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
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
u0022 は二重引用符の Unicode エンコードです。java.util.regex.Pattern
.compile
(regex).matcher
(str).replaceAll
void java.io.PrintStream.println(char[] x) オーバーロードされたメソッド 文字の配列を出力してから行を終了します。このメソッドは、<code>print(char[])
を呼び出したかのように動作します。 > の次に<code>println()
です。
System.out.println("au0022 + u0022b ".length()); は、 System.out.println("a" + "b ".length()); と同等です。 出力 a2 。 (b の後にスペースがあります)
🎜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):
00
...
final int END=Integer.MAX_VALUE ; - 無限ループ。 iが2147483647になったとき、それ以上増えるとマイナスになってしまいます。
}
以上がJava で発生する問題の概要の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。