kotiln #class #java #코틀린 #JAVA
-
23.01.14 Kotlin Class와 field개발 이야기/TIL 2023. 1. 14. 22:00
JAVA랑 Kotlin이랑 비슷하다고 했던거 같은데... 으음 공부하다보니 다른 부분들이 꽤나 많은 것 같다. 오늘은 Kotlin의 Class에 관해서 JAVA와 비교해서 이것저것을 정리해보려고 한다. 아래의 코드를 기반으로 설명을 시작해보자. //JAVA public class Button { private int width; private int height; //constructor public Button(int width, int height){ this.width = width this.height = height } //getter public int getWidth(){ return width; } public int getHeight(){ return height; } public voi..