Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Data classes in Kotlin
Search
Harri Kirik
April 02, 2018
Programming
0
28
Data classes in Kotlin
5-minute talk about data classes in Kotlin
Harri Kirik
April 02, 2018
Tweet
Share
More Decks by Harri Kirik
See All by Harri Kirik
Secure programming techniques: Mobile Development Security guest lecture
harri35
0
77
Support for HSM-like capabilities in Android
harri35
0
120
Why doesn't my in-app QR code work (on location)?
harri35
0
27
Git merge-base
harri35
1
66
Smoke testing your library
harri35
0
24
Collections in Kotlin
harri35
0
32
How to do delegation in Kotlin
harri35
0
31
Two-factor authentication at GDG Riga
harri35
0
70
Two-factor authentication at GDG Tartu
harri35
0
52
Other Decks in Programming
See All in Programming
‘무차별 LGTM~👍’만 외치던 우리가 ‘고봉밥 코드 리뷰’를?
hannah0731
0
530
Fluent UI Blazor 5 (alpha)の紹介
tomokusaba
0
140
家族・子育て重視/沖縄在住を維持しながらエンジニアとしてのキャリアをどのように育てていくか?
ug
0
240
Modern Angular:Renovation for Your Applications @angularDays 2025 Munich
manfredsteyer
PRO
0
140
アーキテクトと美学 / Architecture and Aesthetics
nrslib
12
3.1k
20250326_生成AIによる_レビュー承認システムの実現.pdf
takahiromatsui
17
5.5k
ベクトル検索システムの気持ち
monochromegane
30
8.9k
マルチアカウント環境での、そこまでがんばらない RI/SP 運用設計
wa6sn
0
580
なぜselectはselectではないのか
taiyow
2
310
コンテナでLambdaをデプロイするときに知っておきたかったこと
_takahash
0
150
Django for Data Science (Boston Python Meetup, March 2025)
wsvincent
0
240
AHC 044 混合整数計画ソルバー解法
kiri8128
0
300
Featured
See All Featured
GraphQLとの向き合い方2022年版
quramy
45
14k
A Philosophy of Restraint
colly
203
16k
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Agile that works and the tools we love
rasmusluckow
328
21k
Producing Creativity
orderedlist
PRO
344
40k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
4
500
The Straight Up "How To Draw Better" Workshop
denniskardys
232
140k
Designing for Performance
lara
606
69k
A Modern Web Designer's Workflow
chriscoyier
693
190k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.2k
The World Runs on Bad Software
bkeepers
PRO
67
11k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Transcript
designing & developing for mobile Demoday, 02/04/2018 Harri Kirik, engineer
Kotlin: Data classes
Kotlin KOTLIN: DATA CLASSES #kotlin
Classes to hold data KOTLIN: DATA CLASSES #dataclasses
Usually in Java .. KOTLIN: DATA CLASSES #kotlin
KOTLIN: DATA CLASSES public class Person { private String customerEmail;
private String customerPhoneNr; private String customerSurname; private String customerSurnameReading; private String customerGivenName; private String customerGivenNameReading; private String customerCompany; private String customerCompanyDepartment; public Person() { } public void setCustomerEmail(String customerEmail) { this.customerEmail = customerEmail; } public void setCustomerPhoneNr(String customerPhoneNr) { this.customerPhoneNr = customerPhoneNr; } #demoday
KOTLIN: DATA CLASSES public void setCustomerSurname(String customerSurname) { this.customerSurname =
customerSurname; } public void setCustomerSurnameReading(String customerSurnameReading) { this.customerSurnameReading = customerSurnameReading; } public void setCustomerGivenName(String customerGivenName) { this.customerGivenName = customerGivenName; } public void setCustomerGivenNameReading(String customerGivenNameReading) { this.customerGivenNameReading = customerGivenNameReading; } public void setCustomerCompany(String customerCompany) { this.customerCompany = customerCompany; } public void setCustomerCompanyDepartment(String customerCompanyDepartment) { this.customerCompanyDepartment = customerCompanyDepartment; } #demoday
KOTLIN: DATA CLASSES @Override public boolean equals(Object o) { if
(this == o) return true; if (o == null || getClass() != o.getClass()) return false; Person person = (Person) o; if (customerEmail != null ? !customerEmail.equals(person.customerEmail) : person.customerEmail != null) return false; if (customerPhoneNr != null ? !customerPhoneNr.equals(person.customerPhoneNr) : person.customerPhoneNr != null) return false; if (customerSurname != null ? !customerSurname.equals(person.customerSurname) : person.customerSurname != null) return false; if (customerSurnameReading != null ? !customerSurnameReading.equals(person.customerSurnameReading) : person.customerSurnameReading != null) return false; if (customerGivenName != null ? !customerGivenName.equals(person.customerGivenName) : person.customerGivenName != null) return false; if (customerGivenNameReading != null ? !customerGivenNameReading.equals(person.customerGivenNameReading) : person.customerGivenNameReading != null) return false; if (customerCompany != null ? !customerCompany.equals(person.customerCompany) : person.customerCompany != null) return false; return customerCompanyDepartment != null ? customerCompanyDepartment.equals(person.customerCompanyDepartment) : person.customerCompanyDepartment == null; } #demoday
KOTLIN: DATA CLASSES @Override public int hashCode() { int result
= customerEmail != null ? customerEmail.hashCode() : 0; result = 31 * result + (customerPhoneNr != null ? customerPhoneNr.hashCode() : 0); result = 31 * result + (customerSurname != null ? customerSurname.hashCode() : 0); result = 31 * result + (customerSurnameReading != null ? customerSurnameReading.hashCode() : 0); result = 31 * result + (customerGivenName != null ? customerGivenName.hashCode() : 0); result = 31 * result + (customerGivenNameReading != null ? customerGivenNameReading.hashCode() : 0); result = 31 * result + (customerCompany != null ? customerCompany.hashCode() : 0); result = 31 * result + (customerCompanyDepartment != null ? customerCompanyDepartment.hashCode() : 0); return result; } #demoday
KOTLIN: DATA CLASSES @Override public String toString() { return "Person{"
+ "customerEmail='" + customerEmail + '\'' + ", customerPhoneNr='" + customerPhoneNr + '\'' + ", customerSurname='" + customerSurname + '\'' + ", customerSurnameReading='" + customerSurnameReading + '\'' + ", customerGivenName='" + customerGivenName + '\'' + ", customerGivenNameReading='" + customerGivenNameReading + '\'' + ", customerCompany='" + customerCompany + '\'' + ", customerCompanyDepartment='" + customerCompanyDepartment + '\'' + '}'; } } #demoday
Easy to generate, but tedious KOTLIN: DATA CLASSES #dataclasses
Kotlin can do better KOTLIN: DATA CLASSES #dataclasses
KOTLIN: DATA CLASSES data class Person(val customerEmail: String, val customerPhoneNr:
String, val customerSurname: String, val customerSurnameReading: String, val customerGivenName: String, val customerGivenNameReading: String, val customerCompany: String, val customerCompanyDepartment: String) #demoday
Autogenerated: 1. equals()/hashCode() pair; 2. toString() 3. componentN() functions 4.
copy() function KOTLIN: DATA CLASSES #dataclasses
conponentN() functions KOTLIN: DATA CLASSES #dataclasses
KOTLIN: DATA CLASSES val person = Person( "harri.kirik@lab.mobi", // <-
getComponent1() "+37256240131", //<- getComponent2() "Kirik", //<- getComponent3() "Kirik", //<- getComponent4() "Harri", //<- getComponent5() "Harri", //<- getComponent6() "Mobi Lab", //<- getComponent7() "Development"); //<- getComponent1() val (_, _,surname, _, givenName) = person // (C1), (C2), C3, C4 #demoday
copy() function KOTLIN: DATA CLASSES #dataclasses
KOTLIN: DATA CLASSES val person = Person("harri.kirik@lab.mobi", "+37256240131", "Kirik", "Kirik",
"Harri", "Harri", "Mobi Lab", "Development"); val personFired = person.copy( customerEmail = "harri35@gmail.com", customerCompany = "N/A", customerCompanyDepartment = "N/A") #demoday
http:// lab.mobi designing & developing for mobile thanks Questions?