>Java >java지도 시간 >Java에서 발생한 문제 요약

Java에서 발생한 문제 요약

巴扎黑
巴扎黑원래의
2017-07-24 14:00:551402검색

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

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는 큰따옴표의 유니코드 인코딩입니다.

System.out.println("au0022 + u0022b ".length()); 는 System.out.println("a" + "b ".length()) 와 동일합니다. (b 뒤에 공백이 있습니다.)

🎜🎜System.out.println(Test.class.getName().replace(".","/")); 출력: com/Test 🎜🎜String java. lang .String.replace(CharSequence target, CharSequence replacement)🎜🎜리터럴 대상 시퀀스와 일치하는 이 문자열의 각 하위 문자열을 지정된 리터럴 교체 시퀀스로 바꿉니다. 교체는 문자열의 처음부터 끝까지 진행됩니다. 문자열 "aaa"에 "b"가 포함된 " aa"는 "ab"가 아닌 "ba"가 됩니다.🎜🎜 🎜🎜System.out.println(Test.class.getName().replaceAll("."," / ")); 출력: ////////                                                                                             > 주어진 치환으로 표현하세요.🎜 🎜이 메소드를 🎜str🎜🎜.replaceAll (🎜🎜regex🎜🎜,🎜 🎜repl🎜🎜)🎜 형식으로 호출하면 표현식🎜
🎜java.util.regex와 정확히 동일한 결과가 나옵니다. .Pattern.컴파일 (🎜🎜regex🎜🎜).matcher(🎜🎜str🎜🎜).replaceAll(🎜🎜 repl🎜🎜)🎜🎜🎜 🎜🎜StringBuffer word = null;🎜 word = new StringBuffer('P');🎜🎜'P'는 정수형 숫자로 처리됩니다. 🎜🎜java.lang.StringBuffer.StringBuffer(정수 용량)🎜TConStructs에는 문자가 없고 지정된 초기 용량이 있는 문자열 버퍼입니다.

  • 매개변수:

  • CapaCity.

System.out.prin tln (word) System.out.println(word) .append("a")); 출력 a



int j = 0;

for(int i = 0; i < 100; i++){

j = j++; j);

}

100줄 출력 0(j의 값은 항상 0):

0

0

...

final int END=Integer.MAX_VALUE ; - 무한 루프. 2147483647에 도달하면 더 증가하면 음수가 됩니다.

}

위 내용은 Java에서 발생한 문제 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.