Java에서 발생한 문제 요약
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Java의 난수 생성기 안내. 여기서는 예제를 통해 Java의 함수와 예제를 통해 두 가지 다른 생성기에 대해 설명합니다.

Java의 Weka 가이드. 여기에서는 소개, weka java 사용 방법, 플랫폼 유형 및 장점을 예제와 함께 설명합니다.

자바의 암스트롱 번호 안내 여기에서는 일부 코드와 함께 Java의 Armstrong 번호에 대한 소개를 논의합니다.

Java의 Smith Number 가이드. 여기서는 정의, Java에서 스미스 번호를 확인하는 방법에 대해 논의합니다. 코드 구현의 예.

이 기사에서는 가장 많이 묻는 Java Spring 면접 질문과 자세한 답변을 보관했습니다. 그래야 면접에 합격할 수 있습니다.

Java 8은 스트림 API를 소개하여 데이터 컬렉션을 처리하는 강력하고 표현적인 방법을 제공합니다. 그러나 스트림을 사용할 때 일반적인 질문은 다음과 같은 것입니다. 기존 루프는 조기 중단 또는 반환을 허용하지만 스트림의 Foreach 메소드는이 방법을 직접 지원하지 않습니다. 이 기사는 이유를 설명하고 스트림 처리 시스템에서 조기 종료를 구현하기위한 대체 방법을 탐색합니다. 추가 읽기 : Java Stream API 개선 스트림 foreach를 이해하십시오 Foreach 메소드는 스트림의 각 요소에서 하나의 작업을 수행하는 터미널 작동입니다. 디자인 의도입니다
