首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

Question about "basic_istream"解决思路

2013-07-08 
Question about basic_istream I am checking how basic_istream put out the _streambuf value ,i only

Question about "basic_istream"
 I am checking how basic_istream put out the _streambuf value ,i only found this 

-----------------------------------
     explicit
      basic_istream(__streambuf_type* __sb)
      : _M_gcount(streamsize(0))
      { this->init(__sb); }
-----------------------------------

this->init(__sb)  is the function to put out the value, where is this function's source code?
[解决办法]
你是在什么环境下看的? 没有<跳转到定义>的功能么?
[解决办法]
VS IDE中,在不明白的符号上点鼠标右键,选转到定义。

[解决办法]
在基类或者本类中查找init

热点排行