ArrayList<ContactItemVO> list1 = new ArrayList<ContactItemVO>();
이걸로 퍼블릭 클래스로 만들어둔거 리스트 선언하고
ContactItemVO contact = new ContactItemVO("홍길동","01012345678","서울시");
이렇게 add로 넣어줄때 new를 넣는 이유가 뭐야? 안넣으면 어떻게 되는거고?

아래는 퍼블릭 클래스

public class ContactItemVO {
public String name = "";
public String phoneNumber = "";
public String address = "";

public ContactItemVO(String _name, String _phoneNumber, String _address) {
this.name = _name;
this.phoneNumber = _phoneNumber;
this.address = _address;
}

}