Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

4.DataTypeNumber

fun main(args : Array<String>){

    // 숫자형 DataType 크기 순으로 선언
    // 정확한 크기를 알 필요는 거의 없음.
    // 대부분 왠만한 수는 Int로 해결되니까..
    var 더블  : Double = 10.1111;
    var 플롯  : Float  = 10.1f;
    var 롱    : Long   = 10;
    var 인티저: Int    = 10;
    var 쇼트  : Short  = 10;
    var 바이트: Byte   = 10;

    // 출력해보기
    println (더블);
    println (플롯);
    println (인티저);

    // 크기변환 후, 대입 : 캐스팅
    // to대입할크기() 메소드를 사용한다.
    더블   = 인티저.toDouble();
    인티저 = 더블.toInt();

}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.