Skip to content

Commit

Permalink
Update kt_Keywords.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kuyeol authored Feb 27, 2025
1 parent d4475fe commit 840bbe0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Writerside/topics/kt_Keywords.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,26 @@
</tab>
</tabs>
</procedure>


<procedure>
<h1> Class</h1>
클래스 Any 를 상속받음
Any에 포함된 메서드
equals , hashcode ,toString


</procedure>

<procedure>
<h1> Data Class</h1>
Pojo 객체와 비슷한 인스턴스
자바에 레코드와 사용이 유사하다
일반적으로 변수를 파라미터로 전달하여 생성
<code-block lang="kotlin">
data class AnyPojo(val para:Type )

</code-block>


</procedure>

0 comments on commit 840bbe0

Please sign in to comment.