자바 inter face1 자바 interface static 사용법 자바에서 interface를 사용할 때, 사용하는 메서드에서 static을 사용하려면 어떻게 해야할까요? 자바 8에서 interface 에 default 메서드를 지원한다고 합니다. static 메소드 내에서 interface 객체를 사용하고 싶다면, default 메소드로 선언하여야 사용할 수 있습니다. test_interface.java public interface test_interface{ public String test_if(int a, int b); defualt String test_if_default(int a, int b); } other_class.java public class other_class{ test_interface t_if new test_interface(); pub.. 개발 언어/자바 java 2020. 4. 11. 이전 1 다음