标签: c++ class scope
我很困惑为什么以下代码由于以下错误而无法编译:{{1}}。
据我所知,'rootLevel' was not declared in this scope是在struct NodeLevel之前声明和定义的,这不是该类可供class Solution类使用的充分条件吗?
'rootLevel' was not declared in this scope
struct NodeLevel
class Solution
谢谢!
Solution
答案 0 :(得分:0)
编译器是正确的,您没有声明变量rootLevel。
rootLevel