Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering High Performance with Kotlin

You're reading from   Mastering High Performance with Kotlin Overcome performance difficulties in Kotlin with a range of exciting techniques and solutions

Arrow left icon
Product type Paperback
Published in Jun 2018
Publisher Packt
ISBN-13 9781788996648
Length 316 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Igor Kucherenko Igor Kucherenko
Author Profile Icon Igor Kucherenko
Igor Kucherenko
Arrow right icon
View More author details
Toc

Ranges in Kotlin

To create ranges of variables in Kotlin, you can use the rangeTo extension function or the .. operator of Kotlin. We can create a range of any Comparable type.

Let's look at the following example:

fun main(args: Array<String>) {
val int = args[0].toInt()
if (int in 0..10) {
println(int)
}
}

In this example, we retrieve a value from the args array.

The args array contains command-line arguments that can be used to pass parameters or specify a configuration when an application is launched.

To run a program with parameters in IntelliJ IDEA, click Run and choose Edit Configurations...:

In the window that opens, you can paste parameters in the Program arguments field:

Press OK and run the application. The output will be as follows:

2

Decompiled to Java, it looks like the following:

public static final void main(@NotNull String[] args) {
...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime