Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Project1.cpp でグローバル変数を宣言し、それを Unit1.cpp で読み取る方法は? この質問は C++ Builder に関するものです
このようなことをしたほうがいいのではないですか?
Project1.h で、パブリック領域に変数を宣言します。
public // User declarations __fastcall TForm1(TComponent* Owner); double MyVar;
次に、Project1.h を Unit1.cpp にインクルードすると、MyVar に次のようにアクセスできます。
Form1->MyVar