/* 避免命名變數名稱冗長,如core_ui_games_back_ */
//---> ex1:
namespace std
{
istream cin;
ostream cout;
ostream cerr;
}
std::cout << "namespace" ; //使用方法,std::cout
/* 加上using namespace std;程式碼後,可直接使用cout */
//---> ex2:
namespace display
{
int width;
int height;
bool visible;
};
using display::width; //使用using
width=10; //之後要就可直接使用width
/* 但應避免使用using,以免有重複名稱 */
##ShowAll##
2009年9月22日 星期二
C/C++筆記-namespace格式化變數名稱
訂閱:
張貼留言
(
Atom
)
0 意見 :
張貼留言