?? istrchar.cpp
字號:
/***
* istrchar.cpp - definitions for istream class operator>>(char&)
*
* Copyright (c) 1991-1997, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Definitions of member function for istream operator>>(char&).
* [AT&T C++]
*
*******************************************************************************/
#include <cruntime.h>
#include <internal.h>
#include <stdlib.h>
#include <iostream.h>
#pragma hdrstop
istream& istream::operator>>(char& c)
{
int tchar;
if (ipfx(0))
{
tchar=bp->sbumpc();
if (tchar==EOF)
{
state |= ios::eofbit|ios::badbit;
}
else
{
c = (char)tchar;
}
isfx();
}
return *this;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -