1. 程式人生 > >_編程語言_C++_std

_編程語言_C++_std

輸入 ++ using c++ log 函數 語言 存在 它的

正常使用

cout << "Count is "<<i<<endl;

含有std

std::cout << "Count is " << count << std::endl;

std 是一個類(輸入輸出標準),包括cin 成員和cout成員.

使用 using name space std 以後才能使用它的成員.

#include<iostream.h> 中不存在類std,但它有cin,out的相關函數,不需要使用命名空間了.

_編程語言_C++_std