Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

216
Views
What makes the String class in Kotlin to be able to work with square brackets?

In Kotlin you can do something like this:

val s: String = "Hey"
println(s[1])

or simply:

println("Hey"[1])

and you will print e.

But what if you want to extend this behavior to your own classes? What interface do you need to implement to accomplish this syntax?

I looked at String's supertypes and only found Comparable<String> and CharSequence, neither of which had any other supertypes themselves, so my quest ended early.

For example in Python, by defining a method called __getitem__ in a class, you can bestow the objects of that class the ability to be used with square brackets syntax like this a[i]; I was wondering how this was possible in Kotlin.

Thanks in advance.

over 4 years ago · Santiago Trujillo
2 answers
Answer question

0

You can use Kotlin's operator overloading, specifically the overloading for indexed access operators.

The syntax "Hey"[1] is just an alias for "Hey".get(1) (if not on the left-hand side of an assignment, where it would be an alias for "Hey".set(1, ...)).

over 4 years ago · Santiago Trujillo Report

0

Apparently just having a method get(i: Int) suffices. Interesting...

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!