OOP2 [java] generic review (테스트 영상) 김영한의 실전 자바 중급2편의 제네릭 편을 학습하고 복기차원에서 동영상 촬영을 했다.역시 학습한 걸 복기할 때 진정 내것이 된다. IT/Live Coding 2024. 12. 27. [java] Encapsulation(feat. simple example) 캡슐화 쉬운 예제package access;public class Car { private int speed; public Car() { speed = 0; } public Car(int speed) { this.speed = speed; } public void applyBrakes () { if(isStopped()) { System.out.println("자동차가 이미 정지된 상태입니다."); } else { speed = Math.max(0, speed -50); System.out.println("속도를 50 감소 시킵니다. 현재 속도: " + speed .. IT/development 2024. 9. 29. 이전 1 다음