如何在其他文件中将字符串变量发送到函数中? 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;}
我不知道为什么它不起作用。你知道解决方案吗?
答案 0 :(得分:0)
如果您说它无法编译,则必须将$("#1234").trigger({type: 'keypress', which: 9, keyCode: 9});
从 main.cpp 移至 headers.hpp