다음을 통해 공유


basic_path::basic_path 생성자

basic_path 개체를 생성합니다.

basic_path();
basic_path(const string_type& Str);
basic_path(const value_type *Ptr);
template<class InIt>
basic_path(
   InIt First,
   InIt Last
);
basic_path(const basic_path& Right);
basic_path(basic_path&& Right);

매개 변수

  • Str
    문자열

  • Ptr
    A pointer to an array of characters.

  • First
    The first element in a range of characters.

  • Last
    The element immediately after the last element of the character range.

  • Right
    basic_path 개체

설명

The first constructor default-initializes the stored string.

The second constructor initializes its string by using Str.

The third constructor initializes its string by using the array of characters that is pointed to by Ptr.

The fourth constructor initializes the stored string from the range [First, Last).

The fifth constructor initializes the stored string by using the stored string in Right.

The final constructor initializes the stored string by moving the stored string from Right.

요구 사항

헤더: filesystem

Namespace: std::tr2::sys

참고 항목

참조

basic_path 클래스

<filesystem>