다음을 통해 공유


basic_path::operator = 연산자

저장 된 파일 이름으로 새 값을 할당합니다.

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

매개 변수

  • Right
    basic_path 개체에 대한 참조입니다.두 번째 메서드는 rvalue 참조.

  • Str
    저장 된 파일 이름으로 동일한 형식의 문자열입니다.

  • Ptr
    문자 배열에 대 한 포인터입니다.문자 형식에서 value_type 저장된 파일 이름.

반환 값

*this저장 된 파일 이름을 교체한 후.

요구 사항

헤더: 파일 시스템

네임 스페이스: std::tr2::sys

참고 항목

참조

basic_path 클래스

<filesystem>