「cpp/io/basic filebuf/imbue」の版間の差分
提供: cppreference.com
< cpp | io | basic filebuf
細 (Use {{lc}}. Update links. Various fixes.) |
細 (Fix some translations) |
||
17行: | 17行: | ||
===値を返します=== | ===値を返します=== | ||
− | + | () | |
===例=== | ===例=== | ||
26行: | 26行: | ||
}} | }} | ||
− | === | + | ====== |
{{dsc begin}} | {{dsc begin}} | ||
{{dsc inc | cpp/io/basic_streambuf/dsc imbue}} | {{dsc inc | cpp/io/basic_streambuf/dsc imbue}} |
2015年11月30日 (月) 06:13時点における版
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
protected: virtual void imbue( const std::locale& loc ) |
||
すべての文字が挿入されたり、この呼び出しの後に抽出した(と
imbue()
への別のコールをするまで)std::codecvtのloc
ファセットを使用して変換されるように関連付けられているロケールを変更.Original:
Changes the associated locale so that all characters inserted or extracted after this call (and until another call to
imbue()
) are converted using the std::codecvt facet of loc
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
古いロケールのエンコーディングが状態に依存すると、ファイルが先頭に配置されていない場合は、新しいロケールは以前に吹き込まれたものと同じstd::codecvtファセットを持っている必要があります.
Original:
If the old locale's encoding is state-dependent and file is not positioned at the beginning, then the new locale must have the same std::codecvt facet as the one previously imbued.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
パラメータ
loc | - | でストリームを鼓吹するためのロケールです
Original: the locale to imbue the stream with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
値を返します
(なし)
例
This section is incomplete Reason: no example |
参照
[仮想] |
紐付けられているロケールを変更します ( std::basic_streambuf<CharT,Traits> の仮想プロテクテッドメンバ関数)
|
ロケールを設定します ( std::basic_ios<CharT,Traits> のパブリックメンバ関数)
|