“:”结构构造函数中的冒号
":" Colon in a Struct constructor
我已经在结构构造函数中检查了一些关于位域的主题,但是我找不到关于这行代码的任何解释:
vertex(string s) : name(s) {}
在此代码块中:
struct vertex {
typedef pair<int, vertex*> ve;
vector<ve> adj; //cost of edge, destination vertex
string name;
vertex(string s) : name(s) {}
};
整个代码结构是关于实现我在这个网站上看到的加权图:
#include <iostream>
#include <vector>
#include <map>
#include <string>
using namespace std;
struct vertex {
typedef pair<int, vertex*> ve;
vector<ve> adj; //cost of edge, destination vertex
string name;
vertex(string s) : name(s) {}
};
class graph
{
public:
typedef map<string, vertex *> vmap;
vmap work;
void addvertex(const string&);
void addedge(const string& from, const string& to, double cost);
};
void graph::addvertex(const string &name)
{
vmap::iterator itr = work.find(name);
if (itr == work.end())
{
vertex *v;
v = new vertex(name);
work[name] = v;
return;
}
cout << "\nVertex already exists!";
}
void graph::addedge(const string& from, const string& to, double cost)
{
vertex *f = (work.find(from)->second);
vertex *t = (work.find(to)->second);
pair<int, vertex *> edge = make_pair(cost, t);
f->adj.push_back(edge);
}
这个位是做什么用的?目的是什么?
vertex(string s) : name(s) {}
这似乎构造了一个顶点结构。 : name(s)
语法将结构的 name
字段设置为 s
.
参见What is this weird colon-member (" : ") syntax in the constructor?。
vertex
是结构名称,因此 vertex(string s)
是一个带有 string
参数的构造函数。在构造函数中,:
开始 成员初始化列表 ,它初始化成员值并调用成员构造函数。下面的括号是实际的构造函数体,在本例中是空的。
有关详细信息,请参阅 Constructors and member initializer lists。
我已经在结构构造函数中检查了一些关于位域的主题,但是我找不到关于这行代码的任何解释:
vertex(string s) : name(s) {}
在此代码块中:
struct vertex {
typedef pair<int, vertex*> ve;
vector<ve> adj; //cost of edge, destination vertex
string name;
vertex(string s) : name(s) {}
};
整个代码结构是关于实现我在这个网站上看到的加权图:
#include <iostream>
#include <vector>
#include <map>
#include <string>
using namespace std;
struct vertex {
typedef pair<int, vertex*> ve;
vector<ve> adj; //cost of edge, destination vertex
string name;
vertex(string s) : name(s) {}
};
class graph
{
public:
typedef map<string, vertex *> vmap;
vmap work;
void addvertex(const string&);
void addedge(const string& from, const string& to, double cost);
};
void graph::addvertex(const string &name)
{
vmap::iterator itr = work.find(name);
if (itr == work.end())
{
vertex *v;
v = new vertex(name);
work[name] = v;
return;
}
cout << "\nVertex already exists!";
}
void graph::addedge(const string& from, const string& to, double cost)
{
vertex *f = (work.find(from)->second);
vertex *t = (work.find(to)->second);
pair<int, vertex *> edge = make_pair(cost, t);
f->adj.push_back(edge);
}
这个位是做什么用的?目的是什么?
vertex(string s) : name(s) {}
这似乎构造了一个顶点结构。 : name(s)
语法将结构的 name
字段设置为 s
.
参见What is this weird colon-member (" : ") syntax in the constructor?。
vertex
是结构名称,因此 vertex(string s)
是一个带有 string
参数的构造函数。在构造函数中,:
开始 成员初始化列表 ,它初始化成员值并调用成员构造函数。下面的括号是实际的构造函数体,在本例中是空的。
有关详细信息,请参阅 Constructors and member initializer lists。