Q&A

  • 글로벌변수 선언은 어디서 합니까???
오늘 부끄러운 질문만 계속하네요..^^;

글로벌 변수선언은 어디서 합니까???

자세히 가르쳐주십시요...

그럼 이만 후다닥~~
3  COMMENTS
  • Profile
    이추형 2002.09.07 02:33
    델파이 처음시 아래와 같은 소스가 보입니다..

    unit Unit1;

    interface

    uses
      Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;

    type
      TForm1 = class(TForm)
      private
        { Private declarations }    
      public
        { Public declarations }      <-- 글로벌 변수를 선언
      end;

    var
      Form1: TForm1;

    implementation

    {$R *.DFM}

    end.

    글로벌만 되는것은 아니지요..
      private
       ... { private declarations here}
      protected
       ... { protected declarations here }
      public
       ... { public declarations here }
      published
       ... { published declarations here }
    각각에 대해 선언이 가능합니다.
  • Profile
    김상수 2002.09.07 03:26
  • Profile
    김상수 2002.09.07 05:26
    답변 감사드리구요...또 질문할께..


      private
        { Private declarations }
      public
        { Public declarations }
      gs_user:string;
      end;

    이렇게 했는데요..

    gs_user에 값을 주고 싶을때는 어떻게 해야하나염

    선언하면서 바로 값을 줄 수 는 없나염???

    그러니깐 처음에 gs_user 값이 1234면 끝까지 1234로요...

    무식하게 gs_user := '1234'; 하니깐 바로 에러..ㅡㅡ"

    부탁드립니다...