time_get::get_weekday
分析字符串为周的名称。
iter_type get_weekday(
iter_type _First,
iter_type _Last,
ios_base& _Iosbase,
ios_base::iostate& _State,
tm* _Pt
) const;
参数
_First
输入解决的序列开始的迭代器是转换。_Last
输入解决序列末尾的迭代器是转换。_Iosbase
格式标志,则会设置货币符号是可选的;否则,需要。_State
设置流状态的相应位掩码元素,可以根据选择的操作成功。_Pt
指向的指针以及信息中的存储位置。
返回值
输入解决超出范围之外的输入迭代器的第一个元素。
备注
成员函数返回 do_get_weekday(_First、_Last、_Iosbase、_State,_Pt)。
示例
// time_get_get_weekday.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
#include <sstream>
#include <time.h>
using namespace std;
int main( )
{
locale loc ( "French" );
basic_stringstream< char > pszGetF, pszPutF, pszGetI, pszPutI;
ios_base::iostate st = 0;
struct tm t;
memset( &t, 0, sizeof( struct tm ) );
pszGetF << "mercredi";
pszGetF.imbue(loc);
basic_istream<char>::_Iter i = use_facet
<time_get<char> >
(loc).get_weekday(basic_istream<char>::_Iter(pszGetF.rdbuf( )),
basic_istream<char>::_Iter(0), pszGetF, st, &t);
if (st & ios_base::failbit)
cout << "time_get::get_time("<< pszGetF.rdbuf( )->str( )<< ") FAILED on char: " << *i << endl;
else
cout << "time_get::get_time("<< pszGetF.rdbuf( )->str( )<< ") ="
<< "\ntm_wday: " << t.tm_wday
<< endl;
}
要求
页眉: <区域设置>
命名空间: std