作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一些实现图形算法的代码;特别是,有这些片段会导致问题:
class Path{
private:
const Graph* graph;
public:
Path(Graph* graph_) : graph(graph_) {
...
}
(应该创建 Path
对象,该对象带有指向图)
class GradientDescent{
private:
const Graph graph;
public:
Path currentPath;
GradientDescent(const Graph& graph_) : graph(graph_), currentPath(Path(&graph_)) {}
(应该创建一个 GradientDescent
对象,它有一个 const Graph
和一个非常量 Path
)
问题是,因为我只是想弄清楚如何使用 const
,我得到了这个错误:
error: no matching constructor for initialization of 'Path'
GradientDescent(const Graph& graph_) : graph(graph_), currentPath(Path(&graph_)) {}
longest_path.cpp:103:9: note: candidate constructor not viable: 1st argument ('const Graph *') would lose const qualifier
Path(Graph* graph_) : graph(graph_) {
最佳答案
问题是您的Path
的构造函数需要一个指向非const
Graph
的指针。
要摆脱这个问题,只需更改您的构造函数声明:
Path(const Graph* graph_) : graph(graph_) {
...
}
关于c++ - 如何在这个例子中使用 `const` ness?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39985160/
我是一名优秀的程序员,十分优秀!