Q&A

  • int와 integer에 대해..
델파이에서 'int'와 'integer'가 다른건가요??

inttostr(str)등을 보면 같은거 같은데....

간단하지만 알려주세요 ^^;;
4  COMMENTS
  • Profile
    TeamB 2005.09.09 05:55
    int요? ^^;;

    IntToStr 는 그냥함수명이죠...잘모르겟지만, IntegerToString의 줄임이 아닐런지...

    <!--CodeS-->
    Type        Range        Format
    Integer    -2147483648..2147483647        signed 32-bit
    Cardinal        0..4294967295        unsigned 32-bit
    Fundamental integer types include Shortint, Smallint, Longint, Int64, Byte, Word, and Longword.

    Type        Range        Format
    Shortint        -128..127        signed 8-bit
    Smallint        -32768..32767        signed 16-bit
    Longint        -2147483648..2147483647        signed 32-bit
    Int64        -2^63..2^63?        signed 64-bit
    Byte        0..255        unsigned 8-bit
    Word        0..65535        unsigned 16-bit
    Longword        0..4294967295        unsigned 32-bit
    <!--CodeE-->

    델파이에서 지원하는 숫자형 타입입니다.;

    그럼...

  • Profile
    고수를향해 2005.09.09 19:03
    그럼 델파이에서는 int라는게 없는건가요??

    그냥 integer만 사용하고..
  • Profile
    라벤더 2005.09.09 19:47

    안녕하세요..

    정확하게는.. 델파이에는 int라는 타입자체는 존재하지 않습니다만,

    정수형의 모든 타입을 총칭하는 용어라고 할수 있겠네요.

    델파이에서는 또한 int라는 함수가 있는데요,

    이 함수는 Real형으로 바꿔줍니다..

    그럼.. 즐코하세요~


    function Int(X: Extended): Extended;

    <!--CodeS-->
    var
      R: Real;
    begin
      R := Int(123.456);    { 이때 R은 123.0 }
      R := Int(-123.456);   { 이때 R은 -123.0 }
    end;
    <!--CodeE-->
  • Profile
    고수를향해 2005.09.09 20:44