java의 인터페이스 실례 상세 설명

1727 단어 javainterface
java의 인터페이스 실례 상세 설명
인터페이스: 자바 인터페이스는 일부 방법 표징의 집합이지만 인터페이스에서 구체적인 방법을 실현하지 못한다.
java 인터페이스의 특징은 다음과 같습니다.
1. 자바 인터페이스는 실례화될 수 없다
2. 자바 인터페이스에서 성명된 구성원은 자동public로 설정되기 때문에private 구성원이 존재하지 않습니다
3. 자바 인터페이스에서 방법의 구체적인 실현이 나타날 수 없다.
4. 어떤 인터페이스를 실현하려면 안에 정의된 모든 방법을 실현해야 한다.
다음은 인터페이스 구현 사례를 살펴보겠습니다.

 



package hello;   interface competer{ // void set_compt(int com); void print_compt_information(); } class bj implements competer{ // int com ; public void set_compt(int com) { this.com = com ; // System.out.println(" " + com); } public void print_compt_information() { System.out.println(" " + com); System.out.println(" "); } } class taishi implements competer{ int com ; public void set_compt(int com) { this.com = com ; //System.out.println(" " + com); } public void print_compt_information() { System.out.println(" " + com); System.out.println(" "); } } public class inter { public static void main(String[] args) { taishi com = new taishi(); bj bjj = new bj(); com.set_compt(100); bjj.set_compt(120); com.print_compt_information(); bjj.print_compt_information(); } }
실행 결과:

 100
 
 120
 
읽어주셔서 감사합니다. 여러분에게 도움이 되었으면 좋겠습니다. 본 사이트에 대한 지지에 감사드립니다!

좋은 웹페이지 즐겨찾기