참고할 홈페이지
인파 데브 Inpa Dev
=> https://inpa.tistory.com/
한국 개발자들이 많이 추천하는 블로그중 하나로 이곳이 꼽힌다.
HTML, CSS, JS공부
=> 코딩애플
class Apple {
private final int weight; // 사과 무게
public Apple(int weight) {
this.weight = weight;
}
public int getWeight() {
return weight;
}
@Override
public String toString() {
return "Apple{" + "weight=" + weight + '}';
}
}
/*
* The author of this code is with Inpa Dev.
* Copyright © 2024 DDUONE. All Rights Reserved.
*/