Kotlin Variables and Data Types. Kotlin Basic Syntaxes #3.2

preview_player
Показать описание

Kotlin Android Tutorial for Beginner. Let's explore Variables, Constant Values and Data Types in Kotlin. Just in short.

.
Please donate and support my work
(If you think my free tutorials are better than paid ones :)

Free Programming courses:

Free Flutter course:

Free Android courses:

More free programming courses:

Check out my website:

Let's get in touch! [Sriyank Siddhartha]

---- Thank you for your love and support ----
Рекомендации по теме
Комментарии
Автор

string is not mutable. it only changes the reference of reference variable while the previous data is still in the memory

studywithease
Автор

Bro strings are immutable in Kotlin. You just assigned a new string to the reference variable 'myString' in your example.

comradepeter
Автор

I think using val, reference is made final. So, it cannot change the reference once assigned. It's like final keyword of java.

trohitsingh
Автор

awesome bro....upload 2-3 videos regularly...we wait.

Grewal
Автор

01:35 Its not a semi colon. Its full colon.

SaddaHussain
Автор

good sir keep it up
greatful for everyone..

gauravkhambra
Автор

Nice explanation, please add more videos...

rajatmathew
Автор

How to pass multiple argument in a function?

manavbabber
Автор

fun main(args: Array<String>)
{
var name = "Aisha"
name = "Afnan"
println(name)
}

Is it wrong?

Aisha_Ali
Автор

I have a biiig doubt if you can help me out..
While declaring without Initializing
Var c:Int
C=4
Isn't this Initializing again

godessGOAT
Автор

var has been used by javascript and c# for so long... way to go java nice copying :)

unetwo