작성
·
85
0
강의 클래스와 데이터 문제풀이 6분 45초에서 아래와 같이 작성하면 productName에서 빨간 줄이 나오는데 객체를 생성을 안하고 바로 객체 배열에 접근해서 그러는건가요?
package ex1;
public class ProductOrderMain {
public static void main(String[] args) {
ProductOrder[] orders= new ProductOrder[3];
ProductOrder order1= new ProductOrder();
orders.productName="두부";
}
}