C++標準庫教學
C++ <fstream>
fstream::close()函數
fstream::isopen()函數
fstream::open()函數
ostream運算符=
fstream::rdbuf()函數
fstream::swap()函數
C++ <iomanip>
std::setiosflags()函數
std::resetiosflags()函數
std::setbases()函數
std::setfill()函數
std::setprecision()函數
std::setw()函數
std::get_money()函數
std::put_money()函數
std::get_time()函數
std::put_time()函數
C++ <basic_ios>
ios_base::event()函數
ios_base::event_callback()函數
ios_base::failure
ios_base::Init
basic_ios::setstate
basic_ios::openmode
ios_base::seekdir
basic_ios::basic_ios構造函數
basic_ios::basic_ios析構函數
ios::good()函數
ios_event::eof()函數
ios非運算符
ios::rdstate()函數
ios::clear()函數
ios::copyfmt()函數
ios::fill()函數
ios::exceptions()函數
ios::imbue()函數
ios::tie()函數
io::rdbuf()函數
ios::narrow()函數
ios::widen()函數
ios::init()函數
ios::move()函數
ios::swap()函數
ios::set_rdbuf()函數
std::fpos()函數
ios庫<ios>
ios_base::fmtflags
std::get_time()函數
此函數首先通過構造一個類型爲 basic_istream::sentry
的對象來訪問輸入序列。
然後(如果計算 sentry
對象爲 true
),它調用 time_get::get
(使用流的所選區域設置)來執行提取和解析操作,並相應地調整流的內部狀態標誌。
最後,它在返回之前銷燬 sentry
對象。
它用於從應用中輸入流的字符中提取字符,並將它們解析爲參數fmt
中指定的時間和日期信息。獲得的數據存儲在tmb
指向的struct tm
對象。
聲明
以下是 std::get_time
函數的聲明。
template <class charT>
/*unspecified*/ get_time (struct tm* tmb, const charT* fmt);
參數
tmb
− 指向struct tm
類型的對象的指針,其中存儲提取的時間和日期信息。struct tm
是在ctime>頭中定義的類。fmt
−time_get::get
使用 C字符串作爲格式字符串(見time_get::get
)。charT
是c字符串中的字符類型。
示例
在下面的例子中解釋 get_time()
函數的用法。
#include <iostream>
#include <iomanip>
#include <ctime>
int main () {
struct std::tm when;
std::cout << "Please, enter the time: ";
std::cin >> std::get_time(&when,"%R");
if (std::cin.fail()) std::cout << "Error reading time/n";
else {
std::cout << "The time entered is: ";
std::cout << when.tm_hour << " hours and " << when.tm_min << " minutes/n";
}
return 0;
}