1. 홀수인지 확인합니다.
public static boolean isOdd(int i) { return i %2 != 0 }
2. System.out.println(2.0 - 1.1); 0.89999999 99999999 ( Double type )
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; 최종 Long Millis_per_DAY = 24 * 60 * 60 * 1000
System.out.println (24 * 60 * 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)
문자열을 인쇄한 다음 줄을 종료합니다. 이 메서드는 <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
java.util.regex.Pattern
.compile
(regex).matcher
(str).replaceAll
void java.io.PrintStream.println(char[] x) 오버로드된 메서드문자 배열을 인쇄한 다음 줄을 종료합니다. 이 메서드는<code>print(char[])
를 호출하는 것처럼 동작합니다. > 그리고<code>println()
.
u0022는 큰따옴표의 유니코드 인코딩입니다.
🎜java.util.regex와 정확히 동일한 결과가 나옵니다. .Pattern
.컴파일
(🎜🎜regex🎜🎜).matcher
(🎜🎜str🎜🎜).replaceAll
(🎜🎜 repl🎜🎜)🎜🎜🎜 🎜🎜StringBuffer word = null;🎜 word = new StringBuffer('P');🎜🎜'P'는 정수형 숫자로 처리됩니다. 🎜🎜java.lang.StringBuffer.StringBuffer(정수 용량)🎜TConStructs에는 문자가 없고 지정된 초기 용량이 있는 문자열 버퍼입니다.System.out.prin tln (word) System.out.println(word) .append("a")); 출력 a
- 매개변수:
CapaCity.
int j = 0;
for(int i = 0; i < 100; i++){
j = j++; j);}
100줄 출력 0(j의 값은 항상 0):
00
...
final int END=Integer.MAX_VALUE ; - 무한 루프. 2147483647에 도달하면 더 증가하면 음수가 됩니다.
}
위 내용은 Java에서 발생한 문제 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!