在其他文件c ++中将字符串发送到函数中

时间:2015-09-22 20:29:11

标签: c++

如何在其他文件中将字符串变量发送到函数中? main.cpp中:

#include <iostream>
#include <conio.h>
#include <string>
#include "headers.hpp"

using namespace std;

int main()
{   
   string a;
   cout<<"Type:"<<endl;
   cin>>a;
   other(a);
    getch();    
    return( 0 );
}

headers.hpp:

#ifndef HEADERS_HPP
#define HEADERS_HPP

void other(string a);

#endif

function.cpp:

#include "headers.hpp"
#include <iostream>
#include <math.h>
using namespace std;

void other(string a){
     cout<<a;}

我不知道为什么它不起作用。你知道解决方案吗?

1 个答案:

答案 0 :(得分:0)

如果您说它无法编译,则必须将$("#1234").trigger({type: 'keypress', which: 9, keyCode: 9}); main.cpp 移至 headers.hpp