Java List의 컬렉션 팩토리 메서드인 of를 살펴보던 중 내부 코드에서 흥미로운 코멘트를발견했다. 아래 Java 코드를 보자. comment like:// copy and check manually to void TOCTOU ? /** * Creates a new List from an untrusted array, creating a new array for internal * storage, and checking for and rejecting null elements. * * @param the List's element type * @param input the input array * @return the new list */ ..