0

嗨,我有一个通常在控制台下运行的程序,现在我必须将其设为用户界面。

因此,我创建了一个新项目(Windows 窗体),并开始从包含控制台程序的程序中将头文件 .h 和 .cpp 添加到它上面。

我需要将标题中的变量打印到 Windows 形式的文本框中。这是我的代码:

这是我需要打印含义的变量

测试.h

string **meaning**;

在 test.cpp 上:

void Engine::Conclude(void)
string Name;
**meaning**= assignmeaning(Name)
cout<<"" <<"->"<<**meaning**;

CWorkspace.cpp

#include "stdafx.h"
#include <fstream>
#include <locale.h>
#include <iostream>
#include "WorkSpace.h"
using namespace std;

CWorkspace::CWorkspace()
    {
        m_pBuilder= new Compiler();

    }

void CWorkspace::LoadKnowledge()
{
CPROPNode* Arbol=Builder->SyntacticTree;
   /*This is not relevant*/
fstream file("..\\Text.txt", ios::in);
        if(file.is_open())
        {
            if(Builder->Compiler(file))
            {
                cout<<" ok"<<endl;
           /*Motor is a local variable from CWorkspace*/

    Motor = new InferenceEngine(Builder->SyntacticTree,Builder); 
    if(Motor->ValidateKnowledge())
        {}
}
}

所以我尝试在我的文本框上执行此操作:

#include test.h
#include <string>
#include <msclr\marshal_cppstd.h>
#include <msclr\marshal_cppstd.h>

using namespace std;
namespace mainForm
{ 
  public ref class Res: public System::Windows::Forms::Form
   {
     public:
        CWorkspace* Workspace;
              Res(void)
                  {
                     InitializeComponent();
                  }

/*
  /*
    /*Auto generated code from windows form*/
                                            */
                                             */
private: System::Void Resultado_Load(System::Object^  sender, System::EventArgs^  e) {

string s = Workspace->Motor->meaning;
             String^ hola = gcnew String(s.cstr());
             textBox1->Text= hola;

但不知何故我无法编译,有人知道如何在文本框上写这个变量吗?

这是我在编译时遇到的错误:

错误 C2039: 'cstr': 不是 'std::basic_string<_Elem,_Traits,_Ax> 的成员

虽然我不知道这是否是打印变量的正确方法。

4

1 回答 1

0

std::string 方法的名称是c_str. 您缺少下划线。

于 2013-06-19T15:55:20.977 回答