[Java] import static

2023. 9. 14. 16:47Java

import static은 클래스의 static method나 변수를 클래스명을 붙이지 않고 사용하도록 해준다.

ex)

import static org.assertj.core.api.Assertions.*;

# assertThat으로 사용 가능
# 원래는 Assertions.assertThat으로 사용해야함