一个文件A中有变量Int_double_map,现在执行完文件A,Int_double_map得到了一个值;
转而执行文件B,文件B中的函数调用A中的一个函数Getmap得到其返回值,
返回值即为Int_double_map;
请问此时Int_double_map是不是已经无效了(即不是原来设置的数值)?
////////////////////////// 头文件A
A.h
class A{
public:
Setmap();
double Getmap(uint16_t m);
private:
std::map Int_double_map;
};
//////////////////////////源文件A
A.cc
#include
A:Setmap()
{
Int_double_map.insert(std::make_pair(0, 0.1) );
Int_double_map.insert(std::make_pair(1, 1.1) );
Int_double_map.insert(std::make_pair(2, 2.1) );
Int_double_map.insert(std::make_pair(3, 3.1) );
}
double A:Getmap(uint16_t m)
{
std::map iter=Int_double_map.find(m );
return iter->second;
}
//////////////////////////头文件B
B.h
#include
class B{
public:
B();
double Getmap(uint16_t m);
private:
uint16_t n;
ptr _a_pointer;
};
//////////////////////////源文件B
B.cc
#include
B:B():_n_(2)
{}
double B:Getmap(uint16_t n)
{
return a_pointer->Getmap(_n);
}
//////////////////////////