-2
我有一個函數返回一個常量引用的對象如下:CONST變量聲明
const &Foo getFoo() {
return foo;
}
如果我有另一個功能如下:
void bar() {
const qwerty = asdf.getFoo();
int x = qwerty.x + 5;
// something here
}
與常量必要或最好前述QWERTY實踐?
當你刪除const時編譯器是否抱怨? –
必要:試一下,編譯器會告訴你。最佳實踐:Primarilly意見爲主。 – John3136