受保護的虛成員函式
<locale>

std::std::num_put::do_put

iter_type do_put (iter_type out, ios_base& str, char_type fill, bool val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, long val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, unsigned long val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, double val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, long double val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, const void* val) const;
iter_type do_put (iter_type out, ios_base& str, char_type fill, bool val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, long val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, unsigned long val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, double val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, long double val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, const void* val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, long long val) const;iter_type do_put (iter_type out, ios_base& str, char_type fill, unsigned long long val) const;
輸出數值 [虛擬函式]
用於解釋字元序列為數值的虛保護成員函式,由 num_put::put 呼叫。

多型派生類可以覆蓋此函式的行為。

有關其在 num_put 中的預設行為,請參見 num_put::put

另見