在C++语言中,怎样才能读取另一个文件的数值传递给本文件的一个变量?举个例子
2013-07-30
展开全部
一个变量只能定义一次,但可以多次声明。
在你要用到此变量的地方用extern声明即可
例如:
//A.cpp
int a;
//B.cpp
exterin int a;
此后就可以使用该变量了
在你要用到此变量的地方用extern声明即可
例如:
//A.cpp
int a;
//B.cpp
exterin int a;
此后就可以使用该变量了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-07-30
展开全部
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
void main()
{
//创建文件,输入点内容来测试
string str="Hello World";
ofstream fp;
fp.open("temp.txt");
fp<<str;
fp.close();
//读取文件内容
string temp;
ifstream ftemp;
ftemp.open("temp.txt",ios::in);
ftemp>>temp;
cout<<temp<<' '<<temp<<endl;
ftemp.close();
}
#include <string>
#include <fstream>
using namespace std;
void main()
{
//创建文件,输入点内容来测试
string str="Hello World";
ofstream fp;
fp.open("temp.txt");
fp<<str;
fp.close();
//读取文件内容
string temp;
ifstream ftemp;
ftemp.open("temp.txt",ios::in);
ftemp>>temp;
cout<<temp<<' '<<temp<<endl;
ftemp.close();
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询