본문 바로가기

🖥️프로그래밍 언어25

[JAVA] 자바 추상클래스(Abstract) Part2 ✔ 추상클래스 (abstract) 아래 Document 참고 https://www.w3schools.com/java/java_abstract.asp Java Abstraction W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com Part 1에서 다뤘던 내용을 다시 가져오자면... ↓↓↓ 🟥용어정리🟥 추상클래스(Abstract class) : Abstract 이라는 키워드는 .. 2022. 10. 8.
[JAVA] 자바 추상클래스(Abstract) ✔ 추상클래스 (abstract) 아래 Document 참고 https://www.w3schools.com/java/java_abstract.asp Java Abstraction W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 🟥용어정리🟥 추상클래스(Abstract class) : Abstract 이라는 키워드는 클래스와 메소드에서 사용되는 non-access modifi.. 2022. 10. 7.
[JAVA] 자바 인터페이스(Interface) + 총정리 (인터페이스&추상클래스 차이점) Part3 ✔ 인터페이스(interface) 아래 Document 참고 https://www.w3schools.com/java/java_interface.asp Java Interface W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 인터페이스는 그냥 간단하게 말해서 클래스를 디자인하기 위한 '틀'이라고 생각하면 된다! 🟥용어정리🟥 인터페이스 (Interface) : 인터페이스는 .. 2022. 10. 4.
[JAVA] 자바 인터페이스(Interface) + 실제사용 Part2 ✔ 인터페이스(interface) 아래 Document 참고 https://www.w3schools.com/java/java_interface.asp Java Interface W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 인터페이스는 그냥 간단하게 말해서 클래스를 디자인하기 위한 '틀'이라고 생각하면 된다! 🟥용어정리🟥 인터페이스 (Interface) : 인터페이스는 .. 2022. 10. 2.
[JAVA] 자바 인터페이스(Interface) 정의 + 예시 ✔ 인터페이스(interface) 아래 Document 참고 https://www.w3schools.com/java/java_interface.asp Java Interface W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 🟥용어정리🟥 인터페이스 (Interface) : 인터페이스는 abstract, final과 함께 대표적인 규제이다! 어떤 객체가 있고 그 객체가 특정.. 2022. 9. 30.
[JAVA] 자바 파이널 final + 예제 ✔ 파이널 (final) 아래 Document 참고 https://www.w3schools.com/java/ref_keyword_final.asp Java final Keyword W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com 🟥용어정리🟥 파이널(Final) 자바 프로그래밍 언어에서 파이널 이라는 키워드를 붙이고 변수에 값을 할당하면 그 변수는 수정할 수 없다는 뜻이다... 2022. 9. 29.