我試圖得到一個參考const QString &a
超出了我的功能即獲取引用爲const QString的
void function(const QString &a)
{
//code
}
void otherFunction()
{
// code <<<<<
// I'm unsure how I would be able to get a reference to
// const QString &a here and use it.
}
我怎麼能得到otherFunction
到a
參考?
classMyCoolClass
{
public:
void function();
void otherFunction();
private:
QString a;
};
你可以分享'靜態常量QString的& var;'但就是口感不佳。 –
_你爲什麼想這樣做?我相信你正試圖以一種複雜的方式實現某些目標。嘗試提供一個簡短的例子,你需要這個。 – Zeta