首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

iomanip

此标头是输入输出机械手图书馆。

定义

resetiosflags

clears the specified ios_base flags (function)

setiosflags

sets the specified ios_base flags (function)

setbase

changes the base used for integer I/O (function)

setfill

changes the fill character (function template)

setprecision

changes floating-point precision (function)

setw

changes the width of the next input/output field (function)

get_money (C++11)

parses a monetary value (function template)

put_money (C++11)

formats and outputs a monetary value (function template)

get_time (C++11)

parses a date/time value of specified format (function template)

put_time (C++11)

formats and outputs a date/time value according to the specified format (function template)

quoted (C++14)

inserts and extracts quoted strings with embedded spaces (function template)

简介

二次

代码语言:javascript
复制
namespace std {
    // types T1, T2, ... are unspecified implementation types
    /*T1*/ resetiosflags(ios_base::fmtflags mask);
    /*T2*/ setiosflags (ios_base::fmtflags mask);
    /*T3*/ setbase(int base);
    template<charT> /*T4*/ setfill(charT c);
    /*T5*/ setprecision(int n);
    /*T6*/ setw(int n);
    template <class moneyT> /*T7*/ get_money(moneyT& mon, bool intl = false);
    template <class moneyT> /*T8*/ put_money(const moneyT& mon, bool intl = false);
    template <class charT> /*T9*/ get_time(struct tm* tmb, const charT* fmt);
    template <class charT> /*T10*/ put_time(const struct tm* tmb, const charT* fmt);
}

二次

代码语言:txt
复制
 © cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

扫码关注腾讯云开发者

领取腾讯云代金券