Movatterモバイル変換


[0]ホーム

URL:


Skip to content
DEV Community
Log in Create account

DEV Community

Yonatan Karp-Rudin
Yonatan Karp-Rudin

Posted on • Originally published atyonatankarp.com on

Kotlin Code Smell 18 -Arrays Abusers

TL;DR:Use arrays for rapid prototyping, use object for serious business.

Problems

  • Coupling

  • Information Hiding

  • Code Duplication

  • Fail Fast

  • Integrity

Solutions

  1. Reify objects

  2. Create cohesive small objects

  3. Avoid anemic objects and identify their cohesive relations.

Sample Code

Wrong

// Array with some raw data, what can go wrong?val coordinates = arrayOf(1000.0, 2000.0)
Enter fullscreen modeExit fullscreen mode

Anemic

data class GeographicCoordinate(    val longitude: Double,    val latitude: Double )// An error should be thrown since these values don't exist on Earthval coordinates = GeographicCoordinate(1000.0, 2000.0)
Enter fullscreen modeExit fullscreen mode

Validated

class GeographicCoordinate(    val longitude: Double,    val latitude: Double) {    init {        if (!isValidLatitude(latitude))            throw InvalidLatitudeException(latitude)        if (!isValidLongitude(longitude))            throw InvalidLongitudeException(longitude)    }    private fun isValidLatitude(latitude: Double) =        latitude in -90.0..90.0    private fun isValidLongitude(longitude: Double) =        longitude in -180.0..180.0}// An error should be thrown since these values don't exist on Earthval coordinates = GeographicCoordinate(1000.0, 2000.0)
Enter fullscreen modeExit fullscreen mode

Right

Degrees deserve reification...

data class Latitude(val degree: Double) {    init {        if (degree !in -90.0..90.0)            throw InvalidLatitudeException(degree)    }}data class Longitude(val degree: Double) {    init {        if (degree !in -180.0..180.0)            throw InvalidLongitudeException(degree)    }}data class GeographicCoordinate(    val longitude: Longitude,    val latitude: Latitude)// An error should be thrown since these values don't exist on Earthval coordinates = GeographicCoordinate(    Longitude(1000.0),    Latitude(2000.0))
Enter fullscreen modeExit fullscreen mode

Many people suffer fromprimitive obsession and believe this is over-design. Designing software is about making decisions and comparing trade-offs. The performance argument is not valid nowadays since modern virtual machines can efficiently deal with small short-lived objects.

Conclusion

When creating objects, we must not think of them asdata. This is a common misconception.

We should stay loyal to ourBijection and discover real-world objects.

Most associative arrays have cohesion and represent real-world entities, and we must treat them as first-class objects.


Stay updated with my latest thoughts and ideas by registering for mynewsletter. Connect with me onLinkedIn orTwitter. Let's stay connected and keep the conversation going!


Credits

Top comments(0)

Subscribe
pic
Create template

Templates let you quickly answer FAQs or store snippets for re-use.

Dismiss

Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment'spermalink.

For further actions, you may consider blocking this person and/orreporting abuse

For new articles by me feel free to visit my blog at https://yonatankarp.com and sign to the newsletter list :)
  • Location
    Berlin, Germany
  • Education
    Reichman University
  • Work
    Senior Backend Engineer @ SumUp
  • Joined

More fromYonatan Karp-Rudin

DEV Community

We're a place where coders share, stay up-to-date and grow their careers.

Log in Create account

[8]ページ先頭

©2009-2025 Movatter.jp