次の方法で共有


basic_path::operator/= 演算子

格納されているファイル名に一連の要素を追加します。

basic_path& operator/=(
   const basic_path& Pval
);
basic_path& operator/=(
   const string_type& Str
);
basic_path& operator/=(
   const value_type *Ptr
);

パラメーター

  • Pval
    basic_path オブジェクト。

  • Str
    格納されているファイル名と同じ型の文字列。

  • Ptr
    文字の配列へのポインター。 文字型が格納されているファイル名の value_type です。

戻り値

指定した文字列を付けた後*this。

必要条件

ヘッダー: filesystem

名前空間: std::tr2::sys

参照

関連項目

basic_path クラス

basic_string::value_type

<filesystem>