java.util.regex - Pattern.compile()의 중요성 의 중요성은 무엇입니까?Pattern.compile()방?? 한 후 regex를 입니까?Matcher 오브젝트? 예를 들어 다음과 같습니다. String regex = "((\\S+)\\s*some\\s*"; Pattern pattern = Pattern.compile(regex); // why do I need to compile Matcher matcher = pattern.matcher(text); compile()메서드는 항상 어떤 시점에서 호출되며 패턴 개체를 만드는 유일한 방법입니다.그래서 질문은, 왜 그걸 명시적으로 불러야 하는가 하는 것입니다.한 가지 이유는 다음과 같은 메서드를 사용할 수 있도록 Matcher 개체에..