无法访问全局变量

时间:2013-05-04 15:57:36

标签: winforms c++-cli global-variables

在globaldata.h中我将typedef结构定义为GlobalData。在我的主要cpp程序中,我包括globaldata.h,然后声明
GlobalData globalData;

在声明之后,我包括createNetDialog.h和gui.h.为什么我只能在gui.h中引用globalData而不能在createNetDialog.h中引用?在预编译期间,两个包含文件都应该粘贴到我的.cpp文件中,因此globalData应该在两个文件中都可见吗?

我在这里定义了一个GlobalData结构:
globaldata.h

typedef struct {
    string netFilename;
    DataFileReader *dataFileReader;
} GlobalData;

在我的c ++代码中,我有:
gui.cpp

#include <cstdlib>
#include <iostream>
#include <fstream>
#include <string>
#include "DataFileReader.h"
#include "globaldata.h"

GlobalData globalData;

#include "createNetDialog.h"
#include "gui.h"


using namespace System;
using namespace System::Windows::Forms;
using namespace std;

[STAThread]
void Main(array<String^>^ args)
{
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);

    Carnac::gui formMain;
    Application::Run(%formMain);
}


createNetDialog.h(在createNetDialog构造函数中)

#pragma once


namespace Carnac {

    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;

    /// <summary>
    /// Summary for createNetDialog
    /// </summary>
    public ref class createNetDialog : public System::Windows::Forms::Form
    {
    public:
        createNetDialog(void)
        {
            InitializeComponent();

            // left of '.size' must have a class/struct/union
            // left of '.dataFileReader' must have a class/struct/union
            // 'globalData':undeclared identifier despite being declared right before
            // this file is included in the .cpp file
            for (unsigned int i=0; i<globalData.dataFileReader->_headerItems.size(); i++)
            {
                           // do something
            }
        }

    protected:
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        ~createNetDialog()
        {
            if (components)
            {
                delete components;
            }
        }
    protected: 

    protected: 

    private: System::Windows::Forms::Button^  buttonCreate;
    private: System::Windows::Forms::Button^  buttonCreateCancel;




    private:
        System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
        void InitializeComponent(void)
        {
            this->buttonCreate = (gcnew System::Windows::Forms::Button());
            this->buttonCreateCancel = (gcnew System::Windows::Forms::Button());
            this->SuspendLayout();
            // 
            // buttonCreate
            // 
            this->buttonCreate->Anchor = static_cast<System::Windows::Forms::AnchorStyles>((System::Windows::Forms::AnchorStyles::Bottom | System::Windows::Forms::AnchorStyles::Left));
            this->buttonCreate->Location = System::Drawing::Point(16, 288);
            this->buttonCreate->Name = L"buttonCreate";
            this->buttonCreate->Size = System::Drawing::Size(75, 23);
            this->buttonCreate->TabIndex = 7;
            this->buttonCreate->Text = L"Create";
            this->buttonCreate->UseVisualStyleBackColor = true;
            // 
            // buttonCreateCancel
            // 
            this->buttonCreateCancel->Anchor = static_cast<System::Windows::Forms::AnchorStyles>((System::Windows::Forms::AnchorStyles::Bottom | System::Windows::Forms::AnchorStyles::Right));
            this->buttonCreateCancel->Location = System::Drawing::Point(404, 288);
            this->buttonCreateCancel->Name = L"buttonCreateCancel";
            this->buttonCreateCancel->Size = System::Drawing::Size(75, 23);
            this->buttonCreateCancel->TabIndex = 8;
            this->buttonCreateCancel->Text = L"Cancel";
            this->buttonCreateCancel->UseVisualStyleBackColor = true;
            this->buttonCreateCancel->Click += gcnew System::EventHandler(this, &createNetDialog::buttonCreateCancel_Click);
            // 
            // createNetDialog
            // 
            this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->ClientSize = System::Drawing::Size(491, 323);
            this->Controls->Add(this->buttonCreateCancel);
            this->Controls->Add(this->buttonCreate);
            this->Name = L"createDialog";
            this->Text = L"CreateDialog";
            this->ResumeLayout(false);
            this->PerformLayout();

        }
#pragma endregion
    private: System::Void buttonCreateCancel_Click(System::Object^  sender, System::EventArgs^  e)
    {
                 this->Close();
    }
};
}


gui.h(最后)

#pragma once

#include <msclr\marshal_cppstd.h>

namespace Carnac {

    using namespace System;
    using namespace System::ComponentModel;
    using namespace System::Collections;
    using namespace System::Windows::Forms;
    using namespace System::Data;
    using namespace System::Drawing;

    /// <summary>
    /// Summary for gui
    /// </summary>
    public ref class gui : public System::Windows::Forms::Form
    {
        public:
        gui(void)
        {
            InitializeComponent();
            //
            //TODO: Add the constructor code here
            //
        }

        protected:
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        ~gui()
        {
            if (components)
            {
                delete components;
            }
        }
        protected: 

        private: int _dataColumnSelected;
        private: System::Windows::Forms::Button^  buttonLoad;

        private:
        /// <summary>
        /// Required designer variable.
        /// </summary>
        System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        void InitializeComponent(void)
        {
            this->buttonLoad = (gcnew System::Windows::Forms::Button());
            this->SuspendLayout();
            // 
            // buttonLoad
            // 
            this->buttonLoad->Anchor = static_cast<System::Windows::Forms::AnchorStyles>((System::Windows::Forms::AnchorStyles::Bottom | System::Windows::Forms::AnchorStyles::Left));
            this->buttonLoad->Text = L"Load Data";
            this->buttonLoad->UseVisualStyleBackColor = true;
            this->buttonLoad->Click += gcnew System::EventHandler(this, &gui::buttonLoad_Click);
            this->buttonLoad->Location = System::Drawing::Point(67, 66);
            this->buttonLoad->Name = L"buttonLoad";
            this->buttonLoad->Size = System::Drawing::Size(75, 23);
            this->buttonLoad->TabIndex = 0;
            this->buttonLoad->UseVisualStyleBackColor = true;
            // 
            // gui
            // 
            this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
            this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
            this->BackColor = System::Drawing::SystemColors::AppWorkspace;
            this->ClientSize = System::Drawing::Size(234, 171);
            this->Controls->Add(this->buttonLoad);
            this->Name = L"gui";
            this->Text = L"Carnac";
            this->ResumeLayout(false);

        }
#pragma endregion
        static std::string toStandardString(System::String^ string)
        {
            using System::Runtime::InteropServices::Marshal;
            System::IntPtr pointer = Marshal::StringToHGlobalAnsi(string);
            char* charPointer = reinterpret_cast<char*>(pointer.ToPointer());
            std::string returnString(charPointer, string->Length);
            Marshal::FreeHGlobal(pointer);
            return returnString;
        }

        private: System::Void buttonPredictRun_Click(System::Object^  sender, System::EventArgs^  e)
        {
        }
        private: System::Void buttonTestLoad_Click(System::Object^  sender, System::EventArgs^  e)
        {
        }
        private: System::Void buttonLoad_Click(System::Object^  sender, System::EventArgs^  e)
        {
           OpenFileDialog^ openFileDialog1 = gcnew OpenFileDialog;

           openFileDialog1->Filter = "Data Files|*.dat";

           if (openFileDialog1->ShowDialog() == System::Windows::Forms::DialogResult::OK)
           {
               ifstream inFile;

               String^ strfilename = openFileDialog1->InitialDirectory + openFileDialog1->FileName;

               // THIS WORKS
               // Why can I use globalData here but not in createNetDialog.h?
               globalData.dataFileReader = new DataFileReader(toStandardString(strfilename));
           }
        }
    };
}

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

是的,globalData在gui.h和createNetDialog.h中都可见,从gui.cpp 编译时可见。在globalData.h中,您定义的只是类型,而不是该类型的全局变量。当从任何其他cpp文件编译时,gui.h和createNetDialog.h无法在gui.cpp中看到全局变量的声明。

这是你想要做的:在globalData.h中声明类型和extern全局变量。从您要使用它的每个文件中包含globalData.h,不要依赖其他文件将其包含在您要使用它的文件之前。在只有一个 cpp文件(目前为gui) .cpp),声明实际的全局变量。

// globalData.h
#include "DataFileReader.h"
typedef struct {
    string netFilename;
    DataFileReader *dataFileReader;
} GlobalData;

extern GlobalData globalData;

// EVERY file where you use globalData
#include "globalData.h"

// gui.cpp
#include "globaldata.h"

GlobalData globalData;