close

class CTest{

    std::ostream debug_message;

    explicit CTest():debug_message( cout.rdbuf() ){} ;

   ~CTest(){};

 

   void Print(){

        debug_message << endl << " this line will print on screen " << endl;

        debug_message.clear(ios::failbit);

        debug_message << endl << " this line cannot show " << endl;

        debug_message.clear(ios::goodbit);

        debug_message << endl << " Show this line again " << endl;

   }

}

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 阿肯 的頭像
    阿肯

    韌體開發筆記

    阿肯 發表在 痞客邦 留言(0) 人氣()