When creating a new ArrayList using the default constructor in Java, the initial capacity is set to 10. This means memory is allocated for 10 object references initially. The ArrayList will dynamically resize if more elements are added beyond this capacity.