把做工程過程中經(jīng)常用的內(nèi)容段珍藏起來,下邊資料是關(guān)于C++演示在不同的范圍內(nèi)不沖突使用同名變量的范例的內(nèi)容。
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供磴口網(wǎng)站建設(shè)、磴口做網(wǎng)站、磴口網(wǎng)站設(shè)計(jì)、磴口網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、磴口企業(yè)網(wǎng)站模板建站服務(wù),十年磴口做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
#include
using std::cout;
using std::endl;
{
public:
};
{
}
{
return x;
}
int main()
{
abc a;
cout << "Scope within class abc: x = " << a.x
<< "nScope within namespace def: x = " << def::x
<< "nScope within function getx: x = " << getx()
<< "nScope within global scope : x = " << ::x
<< "nScope within local main function: x = " << x;
{
cout << "nScope within local code block: x = " << x;
}
return 0;
}
Scope within class abc: x = 10
Scope within namespace def: x = 20
Scope within function getx: x = 30
Scope within global scope : x = 40
Scope within local main function: x = 50
Scope within local code block: x = 60