Закрыть
×
=0) { let js = text.slice(pos1, pos2); + '<\/' + "script" + '>'; arrText.push(js); // next pos1 = pos2; continue; } } } break; } return arrText; } function OpenDialog(parentDiv, urlContent) { parentDiv = document.getElementById('modal-background'); // new !!!!!!! parentDiv.appendChild(document.getElementById('modal-template')); document.getElementById('modal-background').style.display = "flex"; // !!!!! block document.getElementById('modal-template').style.display = "flex"; // !!!!! document.getElementById('modal-body').innerHTML = ""; post_url(urlContent, "", function(text_from_server) { var element = document.getElementById('modal-body'); element.innerHTML = text_from_server; // add scripts var arrJSText = get_scripts(text_from_server); for (var i=0; i
dir.by
Праздники ...
Праздники ...
День города Минска (2-ая суббота сентября) (9 и 10 сентября 2023)
Концерты, выставки ...
Концерты, выставки ...
Вадим Самойлов "Агата Кристи"|||г. Минск 19 декабря 2026
Афишу
Спорт занятия ...
Спорт занятия ...
Боулинг
Спорт занятие
Компьютер, программы...
Компьютер, программы...
Объявления ...
Объявления ...
Бережная перевозка лежачих больных
Объявление
Новости ...
Новости ...
Форум ...
Форум ...
обсуждение...
Поиск
Концерты
Спорт
Форум
Компьютер
Компьютер, программы
→
Kotlin
Decimal numbers in Kotlin are: Float, Double
посмотрели
3628
раз
обновлено: 15 January 2025
Example:
Double
Kotlin
val
myPrice
:
Double
=
14.2
//
val
означает что
НЕ МОЖЕМ
менять переменную потом
var
myWeight
:
Double
=
65.3
//
var
означает что можем менять переменную потом
How much space do they take:
Type
min
...
max
value range
Amount of memory occupied
Example
Float
-3.4 * 10
38
... 3.4 * 10
38
Decimal precision: 7 digits
4 bytes
Kotlin
var
myPrice
:
Float
=
14.2f
Double
-1.8 * 10
308
... 1.8 * 10
308
decimal precision: 16 digits
8 bytes
Kotlin
var
myPrice
:
Double
=
14.2
← Previous topic
Integer numbers in Kotlin are: Byte, UByte, Short, UShort, Int, UInt, Long, ULong
Next topic →
A flag with values of true or false in Kotlin is: Boolean
Your feedback ... Comments ...
Your Name
Your comment
(www links can only be added by a logged-in user)
+ Picture
Объявления
Объявления
•
What is Kotlin?
•
Why is IntelliJ IDEA the most popular development environment for Kotlin?
•
Download and install IntelliJ IDEA to explore Kotlin
•
Create a new console project to explore Kotlin | IntelliJ IDEA
Setting the value
•
Declare the variable and set the value in Kotlin | val, var, lateinit, constant: const val, global variable: companion object
null
•
null value, use the symbol ? and ?. and !! and ?: and !!. and ?. in Kotlin
Int, Float, Boolean, Char ...
•
Integer numbers in Kotlin are: Byte, UByte, Short, UShort, Int, UInt, Long, ULong
•
Decimal numbers in Kotlin are: Float, Double
•
A flag with values of true or false in Kotlin is: Boolean
•
The symbol in Kotlin is: Char
•
Convert number to text in Kotlin | Int → String
String
•
The string, the text in Kotlin is: String
•
Interpolate strings in Kotlin. Example: val address:String = "${street}, ${country}"
•
What is the difference between String and StringBuilder ?
Enum
•
What is an enumeration (enum) in Kotlin ?
•
How do I find enum by value in Kotlin ?
Collections and Arrays
•
What are collections in Kotlin?
•
Create collections list, set, map and an array array in Kotlin
Function
•
fun() { ... } is a function in Kotlin. The function is needed to perform an action.
Extension function
•
Extension function in Kotlin. Allows you to add a new function to the system (List, ..) or my (Book, ...) class
Lambda function
•
Lambda function in Kotlin. Example 1: var myFunc1 : (a:Int, b:Int) -> Int = { p1, p2 -> p1 + p2 };
Class
•
What is class in Kotlin? Example: class MyBook { ... } | Primary and secondary constructor | block init
•
lateinit is a late initialization for the class field | Kotlin
•
class that inherits from interface in Kotlin | Example: class MyBook : IBook { ...}
•
Unnamed class that inherits from interface in Kotlin | Example: val book1 = object : IBook { ...}
•
Generic, template class in Kotlin | Example: class MyBook<T> { ... }
Flow
•
flow is the data flow in Kotlin. These are the substitution of LiveData in Android Kotlin and the substitution of Observable in RxJava
Writing a program
•
The Kotlin console app works like Android Jetpack Compose
Ваши вопросы присылайте по почте:
info@dir.by