STD(C++語言命令)

本詞條是多義詞,共6個義項
更多義項 ▼ 收起列表 ▲

STD(standard標準),C++語言命令,std就是standard標準的意思。

基本介紹

  • 中文名:標準
  • 全稱:Standard
釋義
【標準(Standard)】
標準(Standard)
在C++中
std其實就是standard標準的意思~~
例如std::cin就是標準輸入
std::cout就是標準輸出的意思~:
一個標準庫名字空間
The std namespace
The ANSI/ISO C++ standard requires you to explicitly declare the namespace in the standard library. For example,when using iostream.h,you do not have to specify the namespace of cout in one of the following ways:
std::cout (explicitly)
using std::cout (using declaration)
using namespace std (using directive)
Visual C++ continues to support the use of older header filenames with the .h extension. Such usage does not require invocation of the std namespace described above.

相關詞條

熱門詞條

聯絡我們