|
Integer i,j,index; 가 아니고
int i, j, index; 로 쓰셔야죠..
Integer는 파스칼에서 사용합니다..
-_-
완존초보 님이 쓰신 글 :
: 맨 아래의 에러메시지가 왜뜨는지 모르겠습니다. 대단히 감사합니다.
:
: <unit1.h>화일내용
: class TFormMain : public TForm
: {
: __published: // IDE-managed Components
: TPanel *Panel1;
: TSpeedButton *SpeedBtnDispMslRaw;
: .
: void __fastcall BtnDiscTestClick(TObject *Sender);
: .
: private: // User declarations
: public: // User declarations
: void DispScaleData();
: .
: __fastcall TFormMain(TComponent* Owner);
: };
:
: <unit1.cpp>화일내용
: void TFormMain::DispScaleData()
: {
: Integer i,j,index;
: .
: }
:
: <에러메시지 내용>
: [C++ Error] Unit1.cpp(393): E2089 Identifier 'DispScaleData' cannot have a type qualifier
:
|