Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java의 List.replaceAll(UnaryOperator 연산자) 메서드

<시간/>

List 인터페이스의 replaceAll() 메서드는 특정 작업을 나타내는 UnaryOperator의 개체를 수락하고 현재 목록의 모든 요소에 대해 지정된 작업을 수행하고 목록의 기존 값을 각각의 결과로 바꿉니다.

예시

import java.util.ArrayList;
import java.util.function.UnaryOperator;
class Op implements UnaryOperator<String> {
   public String apply(String str) {
      return str.toUpperCase();
   }
}
public class Test {
   public static void main(String[] args) throws CloneNotSupportedException {
      ArrayList<String> list = new ArrayList<>();
      list.add("Java");
      list.add("JavaScript");
      list.add("CoffeeScript");
      list.add("HBase");
      list.add("OpenNLP");
      System.out.println("Contents of the list: "+list);
      list.replaceAll(new Op());
      System.out.println("Contents of the list after replace operation: \n"+list);
   }
}

출력

Contents of the list: [Java, JavaScript, CoffeeScript, HBase, OpenNLP]
Contents of the list after replace operation:[JAVA, JAVASCRIPT, COFFEESCRIPT, HBASE, OPENNLP]