我在我的程序中使用此代码
JSONNode::const_iterator iter = root.begin();
for (; iter!=root.end(); ++iter)
{
const JSONNode& arrayNode = *iter;
std::string type = arrayNode["type"].as_string();
if(type == "node")
{
std::string id = arrayNode["id"].as_string();
double lat = arrayNode["lat"].as_float();
double lon = arrayNode["lon"].as_float();
Node node;
node.SetId(id);
node.SetLatitude(lat);
node.SetLongitude(lon);
nodesMap.insert( std::pair<std::string, Node>(id, node) );
}
else if(type == "way")
{
std::string wayId = arrayNode["id"].as_string();
wayNode.SetId(wayId);
std::vector<Node> collection;
const JSONNode& wayNodes = arrayNode["nodes"];
const JSONNode& nodes = wayNodes.as_array();
JSONNode::const_iterator WayIter = nodes.begin();
for (; WayIter!=nodes.end(); ++WayIter)
{
const JSONNode& arrayNode = *WayIter;
std::string id = arrayNode.as_string();
if(nodesMap.find(id) != nodesMap.end())
{
collection.push_back(nodesMap.find(id)->second);
nodesMap.erase(id);
}
}
wayNode.SetNodesCollection(collection);
std::cout<<"Item Id ->>>>>>>>>>>>>" << collection[2].GetId() << std::endl;
}
}
Node.h
class Node {
private:
std::string id;
double latitude;
double longitude;
public:
Node();
Node(const Node& orig);
Node(std::string id, double lat, double lon);
virtual ~Node();
void SetLongitude(double longitude);
double const & GetLongitude() const;
void SetLatitude(double latitude);
double const & GetLatitude() const;
void SetId(std::string id);
std::string const & GetId() const;
};
Node.cpp
Node::Node() {
}
Node::Node(const Node& orig) {
}
Node::~Node() {
}
Node::Node(std::string id, double lat, double lon){
this->id = id;
this->latitude = lat;
this->longitude = lon;
}
void Node::SetLongitude(double longitude) {
this->longitude = longitude;
}
double const & Node::GetLongitude() const {
return longitude;
}
void Node::SetLatitude(double latitude) {
this->latitude = latitude;
}
double const & Node::GetLatitude() const {
return latitude;
}
void Node::SetId(std::string id) {
this->id = id;
}
std::string const & Node::GetId() const {
return id;
}
但是当我尝试ptint第二项std :: cout&lt;&lt;“项目ID - &gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt;&gt; “ &LT;&LT;集合[2] .GetId()&lt;&lt;的std :: ENDL; 它得到一个空白值。但是集合的大小是82,获得正确的集合大小值。
我需要一些帮助来解决这个问题。 提前谢谢!
答案 0 :(得分:2)
Node::Node(const Node& orig) {
this->id = orig.id;
this->latitude = orig.latitude;
this->longitude = orig.longitude;
}
修改您的复制构造函数。