Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以为函数参数分配一个默认值,它是对 QString 的 const 引用吗?就像是
void someFun(const QString & param = "")
实际上,我可以,它可以按预期编译和运行,但我对它有点困惑,因为不确定引擎盖下发生了什么。所以在这里我引用了一个在堆栈上创建的 QString 对象并且有这个函数的生命周期?