basic_path::operator/= 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>